diff --git a/CHANGELOG.md b/CHANGELOG.md index 69bb846efe0..2e7fe21d570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ changes in the following format: PR #1234*** #### Updates and Improvements - Create new `sex` table to hold candidate sex options, and change Sex and ProbandSex columns of `candidate` table to a varchar(255) datatype that is restricted by the `sex` table (PR #9025) +- Add Project filter for "My tasks" counts in dashboard (PR #9220) #### Bug Fixes - Fix examiner site display (PR #8967) @@ -22,6 +23,7 @@ changes in the following format: PR #1234*** - DoB and DoD format respected in candidate parameters (PR #9001) - Fix delete file in upload (PR #9181) - Fix profile level feedback display in behavioural QC module (PR #9192) +- While proposing a project or editing a project in publications module, prevent indefinite "File to upload" fields from being added if files are browsed then cancelled (PR #9179) ## LORIS 25.0 (Release Date: ????-??-??) ### Core diff --git a/Makefile b/Makefile index 5f33742acf2..8c2c016cb60 100755 --- a/Makefile +++ b/Makefile @@ -77,6 +77,9 @@ mri_violations: issue_tracker: target=issue_tracker npm run compile +candidate_list: + target=candidate_list npm run compile + candidate_parameters: target=candidate_parameters npm run compile diff --git a/SQL/0000-00-00-schema.sql b/SQL/0000-00-00-schema.sql index d18fb02eca2..c9370ffd008 100644 --- a/SQL/0000-00-00-schema.sql +++ b/SQL/0000-00-00-schema.sql @@ -2111,9 +2111,9 @@ CREATE TABLE `acknowledgements` ( `ordering` varchar(255) DEFAULT NULL, `full_name` varchar(255) DEFAULT NULL, `citation_name` varchar(255) DEFAULT NULL, - `affiliations` varchar(255) DEFAULT NULL, - `degrees` varchar(255) DEFAULT NULL, - `roles` varchar(255) DEFAULT NULL, + `affiliations` text DEFAULT NULL, + `degrees` text DEFAULT NULL, + `roles` text DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `present` enum('Yes', 'No') DEFAULT NULL, diff --git a/SQL/New_patches/2024-04-18-acknowledgements-size-constraints.sql b/SQL/New_patches/2024-04-18-acknowledgements-size-constraints.sql new file mode 100644 index 00000000000..a5a64880339 --- /dev/null +++ b/SQL/New_patches/2024-04-18-acknowledgements-size-constraints.sql @@ -0,0 +1,3 @@ +ALTER TABLE acknowledgements MODIFY affiliations TEXT DEFAULT NULL; +ALTER TABLE acknowledgements MODIFY degrees TEXT DEFAULT NULL; +ALTER TABLE acknowledgements MODIFY roles TEXT DEFAULT NULL; \ No newline at end of file diff --git a/htdocs/main.css b/htdocs/main.css index f2d6b7091e9..585c417be18 100644 --- a/htdocs/main.css +++ b/htdocs/main.css @@ -676,19 +676,23 @@ tr.directentry { border: none; } +.help-container { + position: static; +} + .help-content { background: #E4EBF2; border-style: solid; border-color: #246EB6; border-top: none; border-width: 1px; - position: fixed; - right: 0; + position: absolute; + left: 0; overflow-y: auto; z-index: 999; transition: all 0.6s ease 0s; width: 320px; - max-height: 100vh; + max-height: calc(100vh - 100px); } .help-content h1 { diff --git a/modules/acknowledgements/php/acknowledgements.class.inc b/modules/acknowledgements/php/acknowledgements.class.inc index ec2d7bb703e..97e5139b3ff 100644 --- a/modules/acknowledgements/php/acknowledgements.class.inc +++ b/modules/acknowledgements/php/acknowledgements.class.inc @@ -93,22 +93,22 @@ class Acknowledgements extends \NDB_Menu_Filter_Form if ($values['addPresent'] === 'Yes') { $values['addEndDate'] = null; } - $affiliations = is_array($values['addAffiliations']) ? + $affils = is_array($values['addAffiliations']) ? implode(', ', $values['addAffiliations']) : $values['addAffiliations']; - $degrees = is_array($values['addDegrees']) ? + $degs = is_array($values['addDegrees']) ? implode(', ', $values['addDegrees']) : $values['addDegrees']; - $roles = is_array($values['addRoles']) ? + $roles = is_array($values['addRoles']) ? implode(', ', $values['addRoles']) : $values['addRoles']; - $results = [ + $results = [ 'ordering' => $values['addOrdering'], 'full_name' => $values['addFullName'], 'citation_name' => $values['addCitationName'], - 'affiliations' => $affiliations, - 'degrees' => $degrees, - 'roles' => $roles, + 'affiliations' => implode(',', array_filter(explode(',', $affils))), + 'degrees' => implode(',', array_filter(explode(',', $degs))), + 'roles' => implode(',', array_filter(explode(',', $roles))), 'start_date' => $values['addStartDate'], 'end_date' => $values['addEndDate'], 'present' => $values['addPresent'], diff --git a/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js b/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js index ff9523d3e4b..5ce9a202c6a 100644 --- a/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js +++ b/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js @@ -119,6 +119,8 @@ class BehaviouralFeedback extends Component { rowData['sessionID'] + '&commentID=' + rowData['commentID']; + // Open feedback panel + bvlLink += '&showFeedback=true'; bvlLevel ='Instrument : ' + rowData['Instrument']; } else if (rowData['Visit']) { bvlLink = this.props.baseURL + @@ -127,10 +129,14 @@ class BehaviouralFeedback extends Component { rowData['DCCID'] + '&sessionID=' + rowData['sessionID']; + // Open feedback panel + bvlLink += '&showFeedback=true'; bvlLevel ='Visit : ' + rowData['Visit']; } else { bvlLink = this.props.baseURL + '/' + rowData['DCCID']; + // Open feedback panel + bvlLink += '/?showFeedback=true'; bvlLevel ='Profile : ' + rowData['PSCID']; } reactElement = ( diff --git a/modules/bvl_feedback/js/bvl_feedback_panel_jquery.js b/modules/bvl_feedback/js/bvl_feedback_panel_jquery.js index 25973747cda..ae29b2991ab 100644 --- a/modules/bvl_feedback/js/bvl_feedback_panel_jquery.js +++ b/modules/bvl_feedback/js/bvl_feedback_panel_jquery.js @@ -1,4 +1,14 @@ +function toggleBVLMenu() { + $("#bvl_feedback_menu").toggleClass("active_panel"); + $("#bvl_panel_wrapper").toggleClass("bvl_panel"); + // We check if a sidebar exists on the page and toggle it if such. + if ($("#page_wrapper_sidebar").length){ + $("#sidebar-wrapper").toggle("#sidebar-wrapper hide_sidebar"); + $("#page_wrapper_sidebar").toggleClass("wrapper"); + } + $('.dynamictable').DynamicTable(); +} /** * Created by evanmcilroy on 15-06-09. */ @@ -7,17 +17,12 @@ $(document).ready(function() { var sessionID = $('meta[itemprop="sessionID"]').attr("context"); var commentID = $('meta[itemprop="commentID"]').attr("context"); - $('.navbar-toggle').on('click',function(event){ - $("#bvl_feedback_menu").toggleClass("active_panel"); - $("#bvl_panel_wrapper").toggleClass("bvl_panel"); + $('.navbar-toggle').on('click', toggleBVLMenu); - //We check if a sidebar exists on the page and toggle it if such. - if ($("#page_wrapper_sidebar").length){ - $("#sidebar-wrapper").toggle("#sidebar-wrapper hide_sidebar"); - $("#page_wrapper_sidebar").toggleClass("wrapper"); - } - $('.dynamictable').DynamicTable(); - }); + const urlParams = new URLSearchParams(window.location.search); + if (urlParams.get('showFeedback') === 'true') { + toggleBVLMenu(); + } }); // end of document diff --git a/modules/candidate_list/jsx/candidateListIndex.js b/modules/candidate_list/jsx/candidateListIndex.js index c11de28810e..d141c0dab62 100644 --- a/modules/candidate_list/jsx/candidateListIndex.js +++ b/modules/candidate_list/jsx/candidateListIndex.js @@ -6,6 +6,7 @@ import Loader from 'Loader'; import FilterableDataTable from 'FilterableDataTable'; import Modal from 'Modal'; +import fetchDataStream from 'jslib/fetchDataStream'; import OpenProfileForm from './openProfileForm'; /** @@ -25,10 +26,11 @@ class CandidateListIndex extends Component { super(props); this.state = { - data: {}, + data: [], error: false, isLoaded: false, hideFilter: true, + fieldOptions: {}, show: {profileForm: false}, }; @@ -63,8 +65,18 @@ class CandidateListIndex extends Component { * Called by React when the component has been rendered on the page. */ componentDidMount() { - this.fetchData() - .then(() => this.setState({isLoaded: true})); + fetch('options', + {credentials: 'same-origin'}).then( + (resp) => resp.json() + ).then( + (json) => { + this.setState({ + fieldOptions: json, + }); + } + ); + + this.fetchData(); const searchParams = new URLSearchParams(location.search); if (searchParams.has('hide')) { @@ -80,23 +92,15 @@ class CandidateListIndex extends Component { * @return {object} */ fetchData() { - return fetch(this.props.dataURL, {credentials: 'same-origin'}) - .then((resp) => resp.json()) - .then((data) => { - // Convert concatenated string of cohort and visit labels to array - data.Data = data.Data.map((row) => { - // Visit label - row[2] = (row[2]) ? row[2].split(',') : null; - // Cohort - row[4] = (row[4]) ? row[4].split(',') : null; - return row; - }); - this.setState({data}); - }) - .catch((error) => { - this.setState({error: true}); - console.error(error); - }); + fetchDataStream(this.props.dataURL, + (row) => this.state.data.push(row), + (end) => { + this.setState({data: this.state.data}); + }, + () => { + this.setState({isLoaded: true}); + }, + ); } /** @@ -149,8 +153,7 @@ class CandidateListIndex extends Component { } if (column === 'Cohort') { - // If user has multiple cohorts, join array into string - let result = (cell) ? {cell.join(', ')} : ; + let result = (cell) ? {cell} : ; return result; } @@ -178,7 +181,8 @@ class CandidateListIndex extends Component { * XXX: Currently, the order of these fields MUST match the order of the * queried columns in _setupVariables() in candidate_list.class.inc */ - const options = this.state.data.fieldOptions; + // const options = this.state.data.fieldOptions; + const options = this.state.fieldOptions; const fields = [ { label: 'PSCID', @@ -371,7 +375,7 @@ class CandidateListIndex extends Component { {profileForm} { document.getElementById('lorisworkspace') ).render( + * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 + * @link https://www.github.com/aces/Loris/ + */ +class Options extends \LORIS\Http\Endpoint +{ + /** + * Overloading this method to allow access to site users (their own site only) + * and users w/ multisite privs + * + * @param \User $user The user whose access is being checked + * + * @return bool true if user has access, false otherwise + */ + function _hasAccess(\User $user) : bool + { + return ( + $user->hasPermission('access_all_profiles') + || ($user->hasStudySite() && $user->hasPermission('data_entry')) + + ); + } + + /** + * Return the list of field options required to be serialized to JSON + * in order to render the frontend. + * + * @return array + */ + function getFieldOptions() : array + { + $this->loris->getModule('candidate_parameters')->registerAutoloader(); + + // create user object + $factory = \NDB_Factory::singleton(); + $user = $factory->user(); + $config = $factory->config(); + + // get the list of visit labels + $visit_label_options = \Utility::getVisitList(); + + // get the list of sites available for the user + if ($user->hasPermission('access_all_profiles')) { + $list_of_sites = \Utility::getSiteList(); + } else { + $list_of_sites = $user->getStudySites(); + } + $site_options = []; + foreach (array_values($list_of_sites) as $name) { + $site_options[$name] = $name; + } + + // get the list of projects + $list_of_projects = \Utility::getProjectList(); + $project_options = []; + foreach (array_values($list_of_projects) as $name) { + $project_options[$name] = $name; + } + + // get the list of cohorts + $list_of_cohorts = \Utility::getCohortList(); + $cohort_options = []; + foreach (array_values($list_of_cohorts) as $name) { + $cohort_options[$name] = $name; + } + + // get the list participant status options + $list_of_participant_status + = \Candidate::getParticipantStatusOptions(); + $participant_status_options = []; + foreach (array_values($list_of_participant_status) as $name) { + $participant_status_options[$name] = $name; + } + + return [ + 'visitlabel' => $visit_label_options, + 'site' => $site_options, + 'project' => $project_options, + 'cohort' => $cohort_options, + 'participantstatus' => $participant_status_options, + 'useedc' => $config->getSetting("useEDC"), + 'Sex' => \Utility::getSexList(), + ]; + } + + /** + * An Endpoint acts as middleware which will calculate ETag if applicable. + * + * @param ServerRequestInterface $request The incoming PSR7 request + * + * @return ResponseInterface The outgoing PSR7 response + */ + public function handle( + ServerRequestInterface $request, + ): ResponseInterface { + return new \LORIS\Http\Response\JSON\OK($this->getFieldOptions()); + } +} + diff --git a/modules/candidate_parameters/test/candidateQueryEngineTest.php b/modules/candidate_parameters/test/candidateQueryEngineTest.php index 152de8e47e3..00fa986478c 100644 --- a/modules/candidate_parameters/test/candidateQueryEngineTest.php +++ b/modules/candidate_parameters/test/candidateQueryEngineTest.php @@ -1780,7 +1780,6 @@ function testGetCandidateDataMemory() } $memory10dataAfter = memory_get_usage(); - $memory10peak = memory_get_peak_usage(); $iterator10usage = $memory10dataAfter - $memory10data; @@ -1803,11 +1802,9 @@ function testGetCandidateDataMemory() $memoryBigDataAfter = memory_get_usage(); $iteratorBigUsage = $memoryBigDataAfter - $memoryBigDataBefore; - $memoryBigPeak = memory_get_peak_usage(); // We tested 20,000 candidates. Give 2k buffer room for variation in // memory usage. $this->assertTrue($iteratorBigUsage <= ($iterator10usage + (1024*2))); - $this->assertTrue($memoryBigPeak <= ($memory10peak + (1024*2))); $this->DB->run("DROP TEMPORARY TABLE IF EXISTS candidate"); } diff --git a/modules/conflict_resolver/php/module.class.inc b/modules/conflict_resolver/php/module.class.inc index 715d12d5305..065e09e3200 100644 --- a/modules/conflict_resolver/php/module.class.inc +++ b/modules/conflict_resolver/php/module.class.inc @@ -122,6 +122,7 @@ class Module extends \Module s.CenterID <> 1", 'access_all_profiles', 's.CenterID', + 's.ProjectID', $baseURL . '/' . $this->getName(), 'conflict_resolver' ) diff --git a/modules/dashboard/php/taskquerywidget.class.inc b/modules/dashboard/php/taskquerywidget.class.inc index 7e5fc886e7c..d323ba06011 100644 --- a/modules/dashboard/php/taskquerywidget.class.inc +++ b/modules/dashboard/php/taskquerywidget.class.inc @@ -33,21 +33,23 @@ class TaskQueryWidget extends TaskWidget /** * Construct a TaskQueryWidget * - * @param \User $user The user whose tasks are being displayed - * @param string $label The label for the task widget. It should be - * singular and phrased in a way that adding - * an "s" pluralizes. - * @param \Database $db The database connection for the query. - * @param string $dbquery The query to run to get a count. - * @param string $allperm The permission to use to determine if the user - * has access to all sites, or only user sites. - * If the empty string, center permissions will - * not be used. - * @param string $sitefield The field to use in the query to site-restrict - * the results. - * @param string $link The link for the widget to go to when clicked. - * @param string $cssclass An optional css class to add to the task for - * testing. + * @param \User $user The user whose tasks are being displayed + * @param string $label The label for the task widget. It should be + * singular and phrased in a way that adding + * an "s" pluralizes. + * @param \Database $db The database connection for the query. + * @param string $dbquery The query to run to get a count. + * @param string $allperm The permission to use to determine if the user + * has access to all sites, or only user sites. + * If the empty string, center permissions will + * not be used. + * @param string $sitefield The field to use in the query to site-restrict + * the results. + * @param string $projectfield The field to use in the query to restrict the + * project in results. + * @param string $link The link for the widget to go to when clicked. + * @param string $cssclass An optional css class to add to the task for + * testing. */ public function __construct( \User $user, @@ -56,6 +58,7 @@ class TaskQueryWidget extends TaskWidget string $dbquery, string $allperm, string $sitefield, + string $projectfield, string $link, string $cssclass ) { @@ -69,6 +72,10 @@ class TaskQueryWidget extends TaskWidget $siteLabel = 'Site: All User Sites'; } } + if ($projectfield) { + $queryparams['ProjectID'] = implode(',', $user->getProjectIDs()); + $dbquery .= " AND FIND_IN_SET($projectfield, :ProjectID)"; + } $number = (int )$db->pselectOne($dbquery, $queryparams); if ($number != 1) { diff --git a/modules/dashboard/test/DashboardTest.php b/modules/dashboard/test/DashboardTest.php index add728ee714..b86a75bd916 100644 --- a/modules/dashboard/test/DashboardTest.php +++ b/modules/dashboard/test/DashboardTest.php @@ -82,6 +82,13 @@ function setUp(): void 'Name' => 'TESTinProject', ] ); + $this->DB->insert( + "user_project_rel", + [ + 'UserID' => $user_id, + 'ProjectID' => '1', + ] + ); $this->DB->insert( "candidate", [ @@ -316,6 +323,17 @@ public function tearDown(): void ["Value" => null], ["ConfigID" => 48] ); + $user_id = $this->DB->pselectOne( + "SELECT ID FROM users WHERE UserID=:test_user_id", + ["test_user_id" => 'testUser1'] + ); + $this->DB->delete( + "user_project_rel", + [ + 'UserID' => $user_id, + 'ProjectID' => '1', + ] + ); $this->DB->run('SET foreign_key_checks =1'); parent::tearDown(); } @@ -406,7 +424,7 @@ public function testNewScans() $this->safeGet($this->url . '/dashboard/'); $this->_testMytaskPanelAndLink( ".new-scans", - "10", + "4", "- Imaging Browser" ); $this->resetPermissions(); @@ -436,7 +454,7 @@ public function testConflictResolver() $this->safeGet($this->url . '/dashboard/'); $this->_testMytaskPanelAndLink( ".conflict_resolver", - "574", + "570", "- Conflict Resolver" ); $this->resetPermissions(); @@ -513,7 +531,7 @@ public function testPendingUser() $this->safeGet($this->url . '/dashboard/'); $this->_testMytaskPanelAndLink( ".pending-accounts", - "2", + "1", "- User Accounts" ); $this->resetPermissions(); diff --git a/modules/data_release/jsx/dataReleaseIndex.js b/modules/data_release/jsx/dataReleaseIndex.js index 5c9ac15d7b4..67fdb8ac6f2 100644 --- a/modules/data_release/jsx/dataReleaseIndex.js +++ b/modules/data_release/jsx/dataReleaseIndex.js @@ -35,7 +35,7 @@ class DataReleaseIndex extends Component { managePermissionsForm: false, }, }; - +this.checkDownload = this.checkDownload.bind(this); this.fetchData = this.fetchData.bind(this); this.formatColumn = this.formatColumn.bind(this); } @@ -86,7 +86,27 @@ class DataReleaseIndex extends Component { console.error(error); }); } + checkDownload(downloadURL,event) { + event.preventDefault(); // Prevent default link behavior + fetch(downloadURL, { + method: 'GET' + }) + .then(response => { + if (response.ok) { + // If the response is 200 OK, continue with the download + console.log('File exists. Proceeding with download.'); + } else { + // If the response is not OK, show a warning message + console.error('File does not exist or cannot be accessed.'); + alert('File does not exist or cannot be accessed.'); + } + }) + .catch(error => { + console.error('Error checking file:', error); + alert('Error checking file. Please try again later.'); + }); + } /** * Modify behaviour of specified column cells in the Data Table component * @@ -112,7 +132,8 @@ class DataReleaseIndex extends Component { + download = {row['File Name']} + onClick={(event) => this.checkDownload(downloadURL, event)}> {cell} @@ -122,7 +143,6 @@ class DataReleaseIndex extends Component { } return result; } - /** * Renders the React component. * diff --git a/modules/dicom_archive/templates/form_viewDetails.tpl b/modules/dicom_archive/templates/form_viewDetails.tpl index 61636b253e9..e441b70ddba 100644 --- a/modules/dicom_archive/templates/form_viewDetails.tpl +++ b/modules/dicom_archive/templates/form_viewDetails.tpl @@ -80,14 +80,14 @@ md5sum of Archive -

{$archive.md5sumArchive}
- +
{$archive.md5sumArchive}
+ md5sum of Dicom unzipped -
-
{$archive.md5sumDicomOnly}
-
+ +
{$archive.md5sumDicomOnly}
+ Series diff --git a/modules/examiner/php/addexaminer.class.inc b/modules/examiner/php/addexaminer.class.inc index 7b23c2a504b..0322ed9c305 100644 --- a/modules/examiner/php/addexaminer.class.inc +++ b/modules/examiner/php/addexaminer.class.inc @@ -64,6 +64,16 @@ class AddExaminer extends \NDB_Page $fullName = $values['addName'] ?? ''; $siteID = $values['addSite'] ?? ''; + // check for site permissions + $user = \User::singleton(); + if (!$user->hasPermission('examiner_multisite') + && !in_array($siteID, $user->getCenterIDs()) + ) { + return new \LORIS\Http\Response\JSON\Forbidden( + 'Permission denied: You cannot assign examiner to this Site.' + ); + }; + if ($this->examinerExists($fullName, $siteID)) { return new \LORIS\Http\Response\JSON\Conflict( 'This examiner already exists.' diff --git a/modules/examiner/php/examiner.class.inc b/modules/examiner/php/examiner.class.inc index 4c20d978d4c..d057b812338 100644 --- a/modules/examiner/php/examiner.class.inc +++ b/modules/examiner/php/examiner.class.inc @@ -75,10 +75,16 @@ class Examiner extends \DataFrameworkMenu $useCertification = ($this->useCertification == 1) ? true : false; + $user = \User::singleton(); + if ($user->hasPermission('examiner_multisite')) { + $sites = \Utility::getSiteList(false); + } else { + $sites = $user->getStudySites(); + } return [ - 'sites' => \Utility::getSiteList(false), + 'sites' => $sites, 'radiologists' => $yesNoOptions, - 'useCertification' => $useCertification, + 'useCertification' => $useCertification, ]; } diff --git a/modules/genomic_browser/test/TestPlan.md b/modules/genomic_browser/test/TestPlan.md index 94ef510d399..347bd98378c 100644 --- a/modules/genomic_browser/test/TestPlan.md +++ b/modules/genomic_browser/test/TestPlan.md @@ -23,7 +23,7 @@ The following permissions should be available in the database | :---: | --- | | genomic_browser_view_site | View Genomic Browser data from own site | | genomic_browser_view_allsites | View Genomic Browser data across all sites | -| genomic_data_manager | Manage the genomic files | +| genomic_data_manager | Upload genomic files | #### For a user without neither genomic_browser_view_allsites nor genomic_browser_view_site @@ -44,12 +44,12 @@ The following permissions should be available in the database - There should be a *Genomic Browser* item in the Loris Menu under tools. - Accessing the http://your-base-url/genomic_browser/ should load the Genomic Browser Profile tab. -- The only candidate's data that should appear in the Datatable of the Profile, CNV, SNP and Methylation tabs should be those of the same site as this user's site. +- The Datatable that appears in the Profiles, CNV, SNP and Methylation tabs should only contain data having the same site(s) as this user's site(s). *** -#### For a user with genomic_data_manager and one of genomic_data_manager or genomic_browser_view_allsites +#### For a user with genomic_data_manager and one of genomic_browser_view_site or genomic_browser_view_allsites -- In the File tab of the Genomic Browser, there should be a *Upload File* button +- In the File tab of the Genomic Browser, there should be a *Upload File* button. For users with permission genomic_data_manager, this button will allow a file to be uploaded. For users that do not have this permission, a message saying that the user does not have sufficient privileges is displayed when the button is clicked. *** @@ -72,30 +72,17 @@ The following permissions should be available in the database ### Data Filtering #### Profile tab -- Clicking on the *Candidate filters* block header should hide its content. -- Clicking on the *Genomic filters* block header should hide its content. -- Filters should filter data presented in the Datatable according to the selected values after clicking on the *Show Data* button. - - Candidate filters +- Filters should filter data presented in the Datatable according to the selected/entered values on the fly (i.e as values are selected or characters are typed). - *Site* dropdown should present all sites for a user with the genomic_browser_view_allsites permission - *Site* dropdown should present only the user's own site for a user with the genomic_browser_view_site permission - - *DCCID* filter is an exact filter (Shows only the record with this exact value) - - *External ID* and *PSCID* are contains filters (Shows all records that contains this value) - - Genomic filters - * For the four filters, selecting 'Any' should only present record that have at least one, and selecting 'None' should present only record that don't have Files, SNP, CNV or CPG accordingly. -- The datatable should display the following columns (Summary fields) +- The datatable should display the following columns: | No. | PSCID | Sex | Cohort | Files | SNPs | CNVs | CPGs | | ---| --- | ---| --- | ---| --- | ---| ---| | | | | | | | | | -- Setting the Display filter to All fields and click in the *Show Data* button should present the following columns in the Datatable - -No.|PSC|DCCID|PSCID|Sex|Cohort|DoB|ExternalID|Files|SNPs|CNVs|CPGs| -| ---| --- | --- | ---| --- | ---| --- | ---| ---| --- | ---| ---| -| | | | | | | | | | | | - -- Clicking the *Clear Form* button should reset the filters and the Datatable should prensent the Summary fields columns only. +- Clicking the *Clear Form* button should reset the filter. - Clicking on column headers should sort data in ascending order on the first click then descending order on the second click. @@ -103,120 +90,70 @@ No.|PSC|DCCID|PSCID|Sex|Cohort|DoB|ExternalID|Files|SNPs|CNVs|CPGs| #### GWAS tab -- Clicking on the *GWAS filters* block header should hide its content. -- Filters should filter data presented in the Datatable according to the selected values after clicking on the *Show Data* button. - - GWAS filters - - *Chromosome* filter is an exact filter (Shows only the record with this exact value) - - All other filters are contains filters (Shows all records that contains this value) - +- Filters should filter data presented in the Datatable on the fly (i.e as values are selected or characters are typed). - Clicking the *Clear Form* button should reset the filters. - Clicking on column headers should sort data in ascending order on the first click then descending order on the second click. *** #### SNP tab -- Clicking on the *Candidate filters* block header should hide its content. -- Clicking on the *Genomic Range filters* block header should hide its content. -- Clicking on the *SNP filters* block header should hide its content. -- Filters should filter data presented in the Datatable according to the selected values after clicking on the *Show Data* button. +- Filters should filter data presented in the Datatable on the fly (i.e as values are selected or characters are typed). - Candidate filters - *Site* dropdown should present all sites for a user with the genomic_browser_view_allsites permission - *Site* dropdown should present only the user's own site for a user with the genomic_browser_view_site permission - - *DCCID* filter is an exact filter (Shows only the record with this exact value) - - *External ID* and *PSCID* are contains filters (Shows all records that contains this value) - Genomic Range filters - - *Genomic Range* filter should filter SNP to prensent only SNP that *StartLoc* is contain within the range (i.e. chr14:100000-200000 should prensent all the SNP on the chromosome 14 between position 1000000 and 2000000 inclusively. + - *Genomic Range* filter should filter SNP to present only SNP for which *StartLoc* is contained within the range (i.e. chr14:100000-200000 should present all the SNP on the chromosome 14 between position 1000000 and 2000000 inclusively. - By entering only the chromosome name in the *Genomic Range*, all the SNP on that chromosome should appear. - - SNP filters - - All the filters are contains filters (Shows all records that contains this value) -- The datatable should display the following columns (Summary fields) - -|No.|PSCID|Sex|RsID|Allele A|Allele B|Reference Base|Minor Allele|Function Prediction|Damaging|Exonic Function| -| ---| --- | ---| --- | ---| --- | ---| ---| ---| ---| ---| -| | | | | | | | | | | | | -- Setting the Display filter to All fields and click in the *Show Data* button should present the following columns in the Datatable +- The datatable should display the following columns (Summary fields) -|No.|PSC|DCCID|PSCID|Sex|Cohort|DoB|ExternalID|Chromosome|Strand|StartLoc|EndLoc|Gene Symbol|Gene Name|Platform|RsID|SNP Name|SNP Description|External Source|Allele A|Allele B|Reference Base|Minor Allele|Array Report|Markers|Validation Method|Validated|Function Prediction|Damaging|Genotype Quality|Exonic Function| -| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | +|No.|PSCID|Sex|Cohort|Build|Platform|Allele A|Allele B|Reference Base|Minor Allele|Function Prediction|Damaging|Genotype Quality| +| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | ---| +| | | | | | | | | | | | | | -- Clicking the *Clear Form* button should reset the filters and the Datatable should prensent the Summary fields columns only. +- Clicking the *Clear Form* button should reset the filter. - Clicking on column headers should sort data in ascending order on the first click then descending order on the second click. *** #### CNV tab -- Clicking on the *Candidate Filters* block header should hide its content. -- Clicking on the *Genomic Range Filters* block header should hide its content. -- Clicking on the *CNV Filters* block header should hide its content. -- Filters should filter data presented in the Datatable according to the selected values after clicking on the *Show Data* button. - - Candidate filters +- Filters should filter data presented in the Datatable on the fly (i.e as values are selected or characters are typed). - *Site* dropdown should present all sites for a user with the genomic_browser_view_allsites permission - *Site* dropdown should present only the user's own site for a user with the genomic_browser_view_site permission - - *DCCID* filter is an exact filter (Shows only the record with this exact value) - - *External ID* and *PSCID* are contains filters (Shows all records that contains this value) - - Genomic Range filters - - *Genomic Range* filter should filter SNP to prensent only SNP that *StartLoc* is contain within the range (i.e. chr14:100000-200000 should prensent all the SNP on the chromosome 14 between position 1000000 and 2000000 inclusively. - By entering only the chromosome name in the *Genomic Range*, all the SNP on that chromosome should appear. - - CNV filters - - All the filters are contains filters (Shows all records that contains this value) -- The datatable should display the following columns (Summary fields) -|No.|PSCID|Sex|Location|CNV Description|CNV Type|Copy Num Change|Common CNV|Characteristics|Inheritance| +- The datatable should display the following columns: + +|No.|PSCID|Sex|Cohort|Location|Type|Common|Characteristics|Inheritance|Platform| | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | | | | | | | | | | | | -- Setting the Display filter to All fields and click in the *Show Data* button should present the following columns in the Datatable - -|No.|PSC|DCCID|PSCID|Sex|Cohort|DoB|ExternalID|Chromosome|Strand|StartLoc|EndLoc|Size|Location|Gene Symbol|Gene Name|CNV Description|CNV Type|Copy Num Change|Event Name|Common CNV|Characteristics|Inheritance|Array Report|Markers|Validation Method|Platform| -| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| | | | | | | | | | | | | | | | | | | | | | | | | | | | - -- Clicking the *Clear Form* button should reset the filters and the Datatable should prensent the Summary fields columns only. +- Clicking the *Clear Form* button should reset the filter. - Clicking on column headers should sort data in ascending order on the first click then descending order on the second click. *** #### Methylation tab -- Clicking on the *Candidate filters* block header should hide its content. -- Clicking on the *Genomic Range filters* block header should hide its content. -- Clicking on the *CpG filters* block header should hide its content. -- Filters should filter data presented in the Datatable according to the selected values after clicking on the *Show Data* button. - - Candidate filters +- Filters should filter data presented in the Datatable on the fly (i.e as values are selected or characters are typed). - *Site* dropdown should present all sites for a user with the genomic_browser_view_allsites permission - *Site* dropdown should present only the user's own site for a user with the genomic_browser_view_site permission - - *DCCID* filter is an exact filter (Shows only the record with this exact value) - - *External ID* and *PSCID* are contains filters (Shows all records that contains this value) - - Genomic Range filters - *Genomic Range* filter should filter SNP to prensent only SNP that *StartLoc* is contain within the range (i.e. chr14:100000-200000 should prensent all the SNP on the chromosome 14 between position 1000000 and 2000000 inclusively. - - By entering only the chromosome name in the *Genomic Range*, all the SNP on that chromosome should appear. - - CpG filters - - *CPG namer* filter is an exact filter (Shows only the record with this exact value) - - All other filters are contains filters (Shows all records that contains this value) - The datatable should display the following columns (Summary fields) -|No.|PSCID|Sex|Cpg Name|Beta Value|Chromosome|Strand|Gene| -| --- | --- | --- | --- | --- | --- | --- | --- | -| | | | | | | | | - -- Setting the Display filter to All fields and click in the *Show Data* button should present the following columns in the Datatable - -|No.|PSC|DCCID|PSCID|Sex|Cohort|DoB|Sample|Cpg Name|Beta Value|Chromosome|Strand|StartLoc|Probe Loc A|Probe Seq A|Probe Loc B|Probe Seq B|Design|Color|Assembly|SNP 10|Gene|Accession Number|Gene Grp|Island Loc|Context|Fantom Prom|DMR|Enhancer|HMM Island|Reg Feature Loc|Reg Feature Grp|DHS|Platform| -| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | +|No.|PSCID|Sex|Sample|Probe Seq A|Probe Loc B|Probe Seq B|Infinium Design|Color|Gene|Accession Number|Position|DMR|DHS| +| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | +| | | | | | | | | | | | | | | -- Clicking the *Clear Form* button should reset the filters and the Datatable should prensent the Summary fields columns only. +- Clicking the *Clear Form* button should reset the filter. - Clicking on column headers should sort data in ascending order on the first click then descending order on the second click. *** #### Files tab -- *Type* filter is an exact filter (Shows only the record with this exact value) -- All other filters are contains filters (Shows all records that contains this value) +- Filters should filter data presented in the Datatable on the fly (i.e as values are selected or characters are typed). The following columns should be presented diff --git a/modules/imaging_browser/php/module.class.inc b/modules/imaging_browser/php/module.class.inc index c84f871892b..cd19dc63787 100644 --- a/modules/imaging_browser/php/module.class.inc +++ b/modules/imaging_browser/php/module.class.inc @@ -80,6 +80,7 @@ class Module extends \Module AND s.CenterID <> 1", 'imaging_browser_view_allsites', 's.CenterID', + 's.ProjectID', $baseURL . "/imaging_browser/?pendingNew=N&pendingNew=P", "new-scans" ) diff --git a/modules/instrument_builder/jsx/react.questions.js b/modules/instrument_builder/jsx/react.questions.js index b2f5ae82b0b..1845537d075 100644 --- a/modules/instrument_builder/jsx/react.questions.js +++ b/modules/instrument_builder/jsx/react.questions.js @@ -19,6 +19,7 @@ import { TextElement, NumericElement, ButtonElement, + StaticElement, } from 'jsx/Form'; /** diff --git a/modules/instruments/php/module.class.inc b/modules/instruments/php/module.class.inc index 74483f51137..76f2e5fd0fd 100644 --- a/modules/instruments/php/module.class.inc +++ b/modules/instruments/php/module.class.inc @@ -135,6 +135,7 @@ class Module extends \Module AND s.Active='Y' AND c.Active='Y'", 'access_all_profiles', 's.CenterID', + 's.ProjectID', $baseURL . "/statistics/statistics_site/", "" ), diff --git a/modules/issue_tracker/php/module.class.inc b/modules/issue_tracker/php/module.class.inc index 47a2b8ea3c4..d828ccd2385 100644 --- a/modules/issue_tracker/php/module.class.inc +++ b/modules/issue_tracker/php/module.class.inc @@ -96,6 +96,7 @@ class Module extends \Module . $DB->quote($user->getUsername()), '', '', + '', $baseURL . "/issue_tracker/?$url", "issue_tracker" ) diff --git a/modules/media/ajax/FileUpload.php b/modules/media/ajax/FileUpload.php index 5af60b691ae..dae1bab8cac 100644 --- a/modules/media/ajax/FileUpload.php +++ b/modules/media/ajax/FileUpload.php @@ -117,12 +117,9 @@ function uploadFile() $language = isset($_POST['language']) ? $_POST['language'] : null; // If required fields are not set, show an error - if (empty($_FILES)) { - echo showMediaError( - "File could not be uploaded successfully. - Please contact the administrator.", - 400 - ); + if (empty($_POST)) { + echo showMediaError("File too large!", 413); + return; } if (!isset($pscid, $visit)) { @@ -220,7 +217,7 @@ function uploadFile() echo showMediaError("Could not upload the file. Please try again!", 500); } } else { - echo showMediaError("Could not upload the file. Please try again!", 500); + echo showMediaError("File too Large!", 500); } } diff --git a/modules/media/jsx/uploadForm.js b/modules/media/jsx/uploadForm.js index b1af9aad307..93e590a0537 100644 --- a/modules/media/jsx/uploadForm.js +++ b/modules/media/jsx/uploadForm.js @@ -351,11 +351,13 @@ class MediaUploadForm extends Component { console.error(xhr.status + ': ' + xhr.statusText); let msg = 'Upload error!'; if (xhr.response) { - const resp = JSON.parse(xhr.response); - if (resp.message) { - msg = resp.message; + if (xhr.statusText) { + msg = JSON.parse(xhr.response).message; } } + if (xhr.status === 413) { + msg = JSON.stringify('File too large!'); + } this.setState({ errorMessage: msg, @@ -367,8 +369,8 @@ class MediaUploadForm extends Component { xhr.addEventListener('error', () => { console.error(xhr.status + ': ' + xhr.statusText); - let msg = xhr.response && xhr.response.message - ? xhr.response.message + let msg = xhr.response && JSON.parse(xhr.response).message + ? JSON.parse(xhr.response).message : 'Upload error!'; this.setState({ errorMessage: msg, diff --git a/modules/publication/ajax/FileUpload.php b/modules/publication/ajax/FileUpload.php index 9cec2979205..382e8dca285 100644 --- a/modules/publication/ajax/FileUpload.php +++ b/modules/publication/ajax/FileUpload.php @@ -138,7 +138,7 @@ function uploadPublication() : void showPublicationError($e->getMessage(), 500); } - notify($pubID, 'submission'); + notify($pubID, 'submission', $_POST['baseURL']); } /** @@ -426,12 +426,13 @@ function cleanup(int $pubID) : void /** * Send out email notifications for project submission * - * @param int $pubID publication ID - * @param string $type The notification type i.e., submission|edit|review + * @param int $pubID publication ID + * @param string $type The notification type i.e., submission|edit|review + * @param string $baseURL the base URL of the loris site * * @return void */ -function notify($pubID, $type) : void +function notify($pubID, $type, $baseURL) : void { $acceptedTypes = [ 'submission', @@ -464,12 +465,11 @@ function notify($pubID, $type) : void ); throw new \LorisException('Invalid publication ID specified.'); } - $url = \NDB_Factory::singleton()->settings()->getBaseURL(); $emailData['Title'] = $data['Title']; $emailData['Date'] = $data['DateProposed']; $emailData['User'] = $user->getFullname(); - $emailData['URL'] = $url . '/publication/view_project/?id='.$pubID; + $emailData['URL'] = $baseURL . '/publication/view_project/?id='.$pubID; $emailData['ProjectName'] = $config->getSetting('prefix'); $Notifier = new \NDB_Notifier( "publication", @@ -618,10 +618,10 @@ function editProject() : void processFiles($id); // if publication status is changed, send review email if (isset($toUpdate['PublicationStatusID'])) { - notify($id, 'review'); + notify($id, 'review', $_POST['baseURL']); } else { // otherwise send edit email - notify($id, 'edit'); + notify($id, 'edit', $_POST['baseURL']); } if (!empty($toUpdate)) { $db->update( diff --git a/modules/publication/ajax/getData.php b/modules/publication/ajax/getData.php index 3fd0dfd8752..942a7a7ca00 100644 --- a/modules/publication/ajax/getData.php +++ b/modules/publication/ajax/getData.php @@ -145,7 +145,8 @@ function getData($db) : array */ function getProjectData($db, $user, $id) : array { - $query = 'SELECT Title, Description, pr.Name as project, datePublication, '. + $query = 'SELECT Title, Description, ' . + 'p.project as project, pr.Name as projectName, datePublication, '. 'journal, link, publishingStatus, DateProposed, '. 'pc.Name as LeadInvestigator, pc.Email as LeadInvestigatorEmail, '. 'PublicationStatusID, UserID, RejectedReason '. @@ -199,6 +200,7 @@ function getProjectData($db, $user, $id) : array 'title' => $title, 'description' => $description, 'project' => $result['project'], + 'projectName' => $result['projectName'], 'datePublication' => $datePublication, 'journal' => $journal, 'link' => $link, diff --git a/modules/publication/jsx/uploadForm.js b/modules/publication/jsx/uploadForm.js index ebb28285006..0ca0502d804 100644 --- a/modules/publication/jsx/uploadForm.js +++ b/modules/publication/jsx/uploadForm.js @@ -83,9 +83,17 @@ class PublicationUploadForm extends React.Component { */ setFileData(formElement, value) { let numFiles = this.state.numFiles; - if (!this.state.formData[formElement]) { - numFiles += 1; - this.setState({numFiles: numFiles}); + if (value) { + if (!this.state.formData[formElement]) { + numFiles += 1; + this.setState({numFiles: numFiles}); + } + } else { + // File is being removed + if (this.state.formData[formElement]) { + numFiles -= 1; + this.setState({numFiles: numFiles}); + } } this.setFormData(formElement, value); } @@ -158,7 +166,10 @@ class PublicationUploadForm extends React.Component { ); return; } - let formData = this.state.formData; + let formData = { + ...this.state.formData, + baseURL: loris.BaseURL, + }; let formObj = new FormData(); for (let key in formData) { diff --git a/modules/publication/jsx/viewProject.js b/modules/publication/jsx/viewProject.js index b479ba224f9..94548bcb9c6 100644 --- a/modules/publication/jsx/viewProject.js +++ b/modules/publication/jsx/viewProject.js @@ -54,7 +54,11 @@ class ViewProject extends React.Component { ); return; } - let formData = this.state.formData; + let formData = { + ...this.state.formData, + baseURL: loris.BaseURL, + }; + let formObj = new FormData(); for (let key in formData) { if (formData.hasOwnProperty(key) && formData[key] !== '') { @@ -110,6 +114,7 @@ class ViewProject extends React.Component { title: data.title, description: data.description, project: data.project, + projectName: data.projectName, publishingStatus: data.publishingStatus, datePublication: data.datePublication, journal: data.journal, @@ -304,7 +309,7 @@ class ViewProject extends React.Component { user(); $list_of_sites = $user->getStudySites(); - foreach ($list_of_sites as $siteID => $siteName) { - $totalRecruitment = $DB->pselectOne( - "SELECT COUNT(c.CandID) + $data = $DB->pselectColWithIndexKey( + " + SELECT COUNT(c.CandID), c.RegistrationCenterID as CenterID FROM candidate c - WHERE - c.RegistrationCenterID=:Site AND - c.Active='Y' AND - c.Entity_type='Human'", - ['Site' => $siteID] - ); + WHERE c.Active='Y' AND c.Entity_type='Human' + GROUP BY c.RegistrationCenterID + ", + [], + "CenterID" + ); + + foreach ($list_of_sites as $siteID => $siteName) { $recruitmentBySiteData[] = [ "label" => $siteName, - "total" => $totalRecruitment, + "total" => intval($data[$siteID]) ?? 0, ]; } return new \LORIS\Http\Response\JsonResponse($recruitmentBySiteData); @@ -142,23 +144,38 @@ class Charts extends \NDB_Page $user = \NDB_Factory::singleton()->user(); $list_of_sites = $user->getStudySites(); + $data = $DB->pselect( + " + SELECT COUNT(c.CandID) as Count, + c.RegistrationCenterID as SiteID, + c.Sex as Sex + FROM candidate c + WHERE c.Active='Y' AND c.Entity_type='Human' + GROUP BY c.RegistrationCenterID, c.Sex", + [] + ); + $processed_data = []; + foreach ($data as $row) { + $siteid = $row['SiteID']; + $count = intval($row['Count']); + $sex = strtolower($row['Sex']); + if (!isset($processed_data[$siteid])) { + $processed_data[$siteid] = [ + strtolower($sex) => $count + ]; + } else { + assert(!isset($processed_data[$siteid][$sex])); + $processed_data[$siteid][$sex] = $count; + } + } foreach ($list_of_sites as $siteID => $siteName) { $sexData['labels'][] = $siteName; - $sexData['datasets']['female'][] = $DB->pselectOne( - "SELECT COUNT(c.CandID) - FROM candidate c - WHERE c.RegistrationCenterID=:Site - AND c.Sex='female' AND c.Active='Y' - AND c.Entity_type='Human'", - ['Site' => $siteID] - ); - $sexData['datasets']['male'][] = $DB->pselectOne( - "SELECT COUNT(c.CandID) - FROM candidate c - WHERE c.RegistrationCenterID=:Site AND c.Sex='male' AND c.Active='Y' - AND c.Entity_type='Human'", - ['Site' => $siteID] - ); + + $sexData['datasets']['female'][] + = $processed_data[$siteID]['female'] ?? 0; + + $sexData['datasets']['male'][] + = $processed_data[$siteID]['male'] ?? 0; } return (new \LORIS\Http\Response\JsonResponse($sexData)); } @@ -287,6 +304,36 @@ class Charts extends \NDB_Page $user = \NDB_Factory::singleton()->user(); $list_of_sites = $user->getStudySites(); + $recruitment_summary = $DB->pselect( + "SELECT COUNT(c.CandID) as Count, + MONTH(c.Date_registered) as Month, + YEAR(c.Date_registered) as Year, + c.RegistrationCenterID as SiteID + FROM candidate c + WHERE c.Entity_type='Human' + GROUP BY MONTH(c.Date_registered), + YEAR(c.Date_registered), + c.RegistrationCenterID", + [] + ); + + $recruitmentdata = []; + foreach ($recruitment_summary as $row) { + $siteId = $row['SiteID']; + $year = $row['Year']; + $month = $row['Month']; + if (!isset($recruitmentdata[$siteId])) { + $recruitmentdata[$siteId] = [ + $year => [$month => $row['Count']] + ]; + } else if (!isset($recruitmentdata[$siteId][$year])) { + $recruitmentdata[$siteId][$year] = [$month => $row['Count']]; + } else { + assert(!isset($recruitmentdata[$siteId][$year][$month])); + $recruitmentdata[$siteId][$year][$month] = $row['Count']; + } + + } foreach ($list_of_sites as $siteID => $siteName) { if (!isset($recruitmentData['labels'])) { continue; @@ -296,6 +343,7 @@ class Charts extends \NDB_Page "data" => $this->_getSiteLineRecruitmentData( $siteID, $recruitmentData['labels'], + $recruitmentdata, ), ]; } @@ -333,33 +381,22 @@ class Charts extends \NDB_Page /** * Helper to generate the data for the site recruitment line for $siteID. * - * @param int $siteID The centerID to get data for. - * @param array $labels The list of labels on the chart to fill the data for. + * @param int $siteID The centerID to get data for. + * @param array $labels The list of labels on the chart to fill + * the data for. + * @param array $recruitmentdata The raw recruitment data to split according to + the labels * * @return array */ - private function _getSiteLineRecruitmentData($siteID, $labels) + private function _getSiteLineRecruitmentData($siteID, $labels, $recruitmentdata) { - $DB = \NDB_Factory::singleton()->database(); $data = []; - foreach ($labels as $label) { $month = (strlen($label) == 6) ? substr($label, 0, 1) : substr($label, 0, 2); $year = substr($label, -4, 4); - $data[] = $DB->pselectOne( - "SELECT COUNT(c.CandID) - FROM candidate c - WHERE c.RegistrationCenterID=:Site - AND MONTH(c.Date_registered)=:Month - AND YEAR(c.Date_registered)=:Year - AND c.Entity_type='Human'", - [ - 'Site' => $siteID, - 'Month' => $month, - 'Year' => $year, - ] - ); + $data[] = intval($recruitmentdata[$siteID][$year][$month] ?? "0"); } return $data; } diff --git a/modules/statistics/php/widgets.class.inc b/modules/statistics/php/widgets.class.inc index 9afb6d07466..141b679c896 100644 --- a/modules/statistics/php/widgets.class.inc +++ b/modules/statistics/php/widgets.class.inc @@ -65,14 +65,25 @@ class Widgets extends \NDB_Page implements ETagCalculator $recruitmentTarget = $config->getSetting('recruitmentTarget'); - $totalScans = $this->_getTotalRecruitment($db); - $recruitment = [ + $recruitmentRaw = $db->pselect( + "SELECT + COUNT(*) as Count, + c.Sex as Sex, + c.RegistrationProjectID as ProjectID + FROM candidate c + WHERE c.Active='Y' AND c.Entity_type='Human' + AND c.RegistrationCenterID <> 1 + GROUP BY c.Sex, c.RegistrationProjectID", + [] + ); + $totalScans = array_sum(array_column($recruitmentRaw, 'Count')); + $recruitment = [ 'overall' => $this->_createProjectProgressBar( 'overall', "Overall Recruitment", $recruitmentTarget, $totalScans, - $db, + $recruitmentRaw, ) ]; @@ -89,8 +100,8 @@ class Widgets extends \NDB_Page implements ETagCalculator $projectID, $projectInfo['Name'], $projectInfo['recruitmentTarget'], - $this->getTotalRecruitmentByProject($db, $projectID), - $db + $this->getTotalRecruitmentByProject($recruitmentRaw, $projectID), + $recruitmentRaw ); } @@ -108,34 +119,17 @@ class Widgets extends \NDB_Page implements ETagCalculator return $this->_cache; } - /** - * Gets the total count of candidates associated with a specific project - * - * @param \Database $DB The database connection to get the count from. - * - * @return int - */ - private function _getTotalRecruitment(\Database $DB): int - { - return $DB->pselectOneInt( - "SELECT COUNT(*) FROM candidate c - WHERE c.Active='Y' AND c.Entity_type='Human' - AND c.RegistrationCenterID <> 1", - [] - ) ?? 0; - } - /** * Generates the template data for a progress bar. * - * @param string $ID The name of the progress bar being - * created. - * @param string $title The title to add to the template - * variables. - * @param int $recruitmentTarget The target for this recruitment type. - * @param int $totalRecruitment The total number of candidates of all - * types. - * @param \Database $db The database connection to get data from. + * @param string $ID The name of the progress bar being + * created. + * @param string $title The title to add to the template + * variables. + * @param int $recruitmentTarget The target for this recruitment type. + * @param int $totalRecruitment The total number of candidates of all + * types. + * @param array $rawData The raw data from the database * * @return array Smarty template data */ @@ -144,7 +138,7 @@ class Widgets extends \NDB_Page implements ETagCalculator $title, $recruitmentTarget, $totalRecruitment, - \Database $db + $rawData ): array { $rv = [ 'total_recruitment' => $totalRecruitment, @@ -156,17 +150,21 @@ class Widgets extends \NDB_Page implements ETagCalculator $rv['recruitment_target'] = $recruitmentTarget; if ($ID == 'overall') { - $totalFemales = $this->_getTotalSex($db, "Female"); + $totalFemales = $this->_getTotalSex($rawData, "Female"); } else { - $totalFemales = $this->getTotalSexByProject($db, "Female", intval($ID)); + $totalFemales = $this->getTotalSexByProject( + $rawData, + "Female", + intval($ID) + ); } $rv['female_total'] = $totalFemales; $rv['female_percent'] = round($totalFemales / $recruitmentTarget * 100); if ($ID == 'overall') { - $totalMales = $this->_getTotalSex($db, "Male"); + $totalMales = $this->_getTotalSex($rawData, "Male"); } else { - $totalMales = $this->getTotalSexByProject($db, "Male", intval($ID)); + $totalMales = $this->getTotalSexByProject($rawData, "Male", intval($ID)); } $rv['male_total'] = $totalMales; $rv['male_percent'] @@ -186,68 +184,60 @@ class Widgets extends \NDB_Page implements ETagCalculator /** * Gets the total count of candidates of a specific sex * - * @param \Database $db A database connection to retrieve information - * from. - * @param string $sex Biological sex (male or female) + * @param array $raw The raw data returned from the SQL query. + * @param string $sex Biological sex (male or female) * * @return int */ - private function _getTotalSex(\Database $db, string $sex) : int + private function _getTotalSex(array $raw, string $sex) : int { - return $db->pselectOneInt( - "SELECT COUNT(c.CandID) - FROM candidate c - WHERE c.Sex=:sex AND c.Active='Y' AND c.Entity_type='Human' - AND c.RegistrationCenterID <> 1", - ['sex' => $sex] - ) ?? 0; + $sum = 0; + foreach ($raw as $row) { + if ($row['Sex'] == $sex) { + $sum += intval($row['Count']); + } + } + return $sum; } /** * Gets the total count of candidates of a specific sex, * associated with a specific project * - * @param \Database $DB A database connection to retrieve information - * from. - * @param string $sex A biological sex (male or female) - * @param int $projectID Project ID + * @param array $raw The raw data returned from the SQL query. + * @param string $sex A biological sex (male or female) + * @param int $projectID Project ID * * @return int */ - function getTotalSexByProject(\Database $DB, string $sex, int $projectID) : int + function getTotalSexByProject(array $raw, string $sex, int $projectID) : int { - return $DB->pselectOneInt( - "SELECT COUNT(c.CandID) - FROM candidate c - WHERE c.Sex=:sex AND c.Active='Y' AND c.RegistrationProjectID=:PID - AND c.Entity_type='Human' AND c.RegistrationCenterID <> 1", - [ - 'sex' => $sex, - 'PID' => "$projectID", - ] - ) ?? 0; + $sum = 0; + foreach ($raw as $row) { + if ($row['Sex'] == $sex && $row['ProjectID'] == $projectID) { + $sum += intval($row['Count']); + } + } + return $sum; } /** * Gets the total count of candidates associated with a specific project. * - * @param \Database $db A database connection to retrieve information - * from. - * @param int $projectID The Project ID to get recruitment for. + * @param array $data The raw data returned from the SQL query. + * @param int $projectID The Project ID to get recruitment for. * * @return int */ - function getTotalRecruitmentByProject(\Database $db, int $projectID): int + function getTotalRecruitmentByProject(array $data, int $projectID): int { - return $db->pselectOneInt( - "SELECT COUNT(*) - FROM candidate c - WHERE c.Active='Y' - AND c.RegistrationProjectID=:PID - AND c.Entity_type='Human' - AND c.RegistrationCenterID <> 1", - ['PID' => "$projectID"] - ) ?? 0; + $sum = 0; + foreach ($data as $row) { + if (intval($row['ProjectID']) == $projectID) { + $sum += intval($row['Count']); + } + } + return $sum; } /** diff --git a/modules/user_accounts/php/module.class.inc b/modules/user_accounts/php/module.class.inc index f29ce21879d..ee025cfc636 100644 --- a/modules/user_accounts/php/module.class.inc +++ b/modules/user_accounts/php/module.class.inc @@ -86,9 +86,11 @@ class Module extends \Module $DB, "SELECT COUNT(DISTINCT users.UserID) FROM users LEFT JOIN user_psc_rel as upr ON (upr.UserID=users.ID) + LEFT JOIN user_project_rel upr2 ON (upr2.UserID=users.ID) WHERE users.Pending_approval='Y'", 'user_accounts_multisite', 'upr.CenterID', + 'upr2.ProjectID', $baseURL . "/user_accounts/?pendingApproval=Y", "pending-accounts" ) diff --git a/php/libraries/NDB_Notifier.class.inc b/php/libraries/NDB_Notifier.class.inc index 1b6dd8257c7..00a017837ac 100644 --- a/php/libraries/NDB_Notifier.class.inc +++ b/php/libraries/NDB_Notifier.class.inc @@ -86,9 +86,10 @@ class NDB_Notifier extends NDB_Notifier_Abstract { foreach ($this->notified['email_text'] as $name=>$uid) { $notifierID = $this->notifier->getId(); + $senderName = $this->notifier->getFullname(); $senderEmail = $this->notifier->getEmail(); $this->tpl_data['notified_user'] = $name; - $this->tpl_data['notifier_user'] = "$notifierID <$senderEmail>"; + $this->tpl_data['notifier_user'] = "$senderName <$senderEmail>"; $recipientEmail = $this->getEmail((int)$uid); if ($notifierID === $uid) { @@ -99,7 +100,8 @@ class NDB_Notifier extends NDB_Notifier_Abstract $this->template, $this->tpl_data ); - $this->log((int)$notifierID, (int)$uid, 'email_text'); + + $this->log($notifierID, (int)$uid, 'email_text'); } } } diff --git a/raisinbread/RB_files/RB_candidate.sql b/raisinbread/RB_files/RB_candidate.sql index d3a49840e19..20485cf8bb5 100644 --- a/raisinbread/RB_files/RB_candidate.sql +++ b/raisinbread/RB_files/RB_candidate.sql @@ -668,7 +668,6 @@ INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `E INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1013,676061,'DCC292',NULL,'1980-02-02',NULL,NULL,'Female',1,1,NULL,'Y','2016-07-08','admin','admin','2016-07-08','false',NULL,NULL,NULL,'2019-06-20 12:10:04','Human',NULL,NULL); INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1010,696846,'DCC211',NULL,'2015-01-01',NULL,'2001-01-01','Male',1,1,NULL,'Y','2016-02-10','admin','admin','2016-02-10','false',NULL,NULL,NULL,'2019-06-20 12:10:04','Human',NULL,NULL); INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1017,749066,'scanner',NULL,NULL,NULL,NULL,NULL,3,4,NULL,'Y','2016-06-15',NULL,'NeuroDB::MRI','2016-06-15','false',NULL,NULL,NULL,'2019-07-04 09:42:58','Scanner',NULL,NULL); -INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1019,753526,'PIDCC0821',NULL,NULL,NULL,NULL,'Female',1,2,NULL,'Y',NULL,NULL,'',NULL,'false',NULL,NULL,NULL,'2023-02-08 16:54:18','Human',NULL,NULL); INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1006,843091,'scanner',NULL,NULL,NULL,NULL,NULL,2,4,NULL,'Y','2016-05-30',NULL,'NeuroDB::MRI','2016-05-30','false',NULL,NULL,NULL,'2019-07-04 09:42:58','Scanner',NULL,NULL); INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1007,846734,'scanner',NULL,NULL,NULL,NULL,NULL,2,4,NULL,'Y','2016-02-26',NULL,'NeuroDB::MRI','2016-02-26','false',NULL,NULL,NULL,'2019-07-04 09:42:58','Scanner',NULL,NULL); INSERT INTO `candidate` (`ID`, `CandID`, `PSCID`, `ExternalID`, `DoB`, `DoD`, `EDC`, `Sex`, `RegistrationCenterID`, `RegistrationProjectID`, `Ethnicity`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `flagged_caveatemptor`, `flagged_reason`, `flagged_other`, `flagged_other_status`, `Testdate`, `Entity_type`, `ProbandSex`, `ProbandDoB`) VALUES (1014,947103,'DCC702',NULL,'2015-04-04',NULL,NULL,'Female',1,1,NULL,'Y','2016-06-30','admin','admin','2016-06-30','false',NULL,NULL,NULL,'2019-06-20 12:10:04','Human',NULL,NULL); diff --git a/raisinbread/RB_files/RB_physiological_archive.sql b/raisinbread/RB_files/RB_physiological_archive.sql index 87d32242e4b..21ac3a1f28d 100644 --- a/raisinbread/RB_files/RB_physiological_archive.sql +++ b/raisinbread/RB_files/RB_physiological_archive.sql @@ -11,9 +11,5 @@ INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFil INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (8,8,'2019-08-21 15:11:06','509674cfdd31608c7abe7856e7b454413396b6cb754843803a55ba4238f8635f29ab398bbefb2b1909e51ae6737a0ddbc44190aa3727266693d540ab5f544564','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT173/ses-V1/eeg/sub-OTT173_ses-V1_task-faceO_eeg.tgz'); INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (9,9,'2019-08-21 15:11:20','a3ced3cb3d9adb7776c04c98efa97db4e33a0200ff6716fd9d0bcbab075d830627be4035492be5f2f60c83147e4e931d1e1e3a415ce61b9c3b512cbf5dafe26d','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT171/ses-V1/eeg/sub-OTT171_ses-V1_task-faceO_eeg.tgz'); INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (10,10,'2019-08-21 15:11:26','a8ce4528e4ea23bd8834a03abd413f24c0008c66e9f5405326a91c2f1c49f0039b9fbe7d14330f334939776b9e0ce4d3c5e6a49cda6f2052c25a9b1010be7af2','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_eeg.tgz'); -INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (11,11,'2023-02-09 10:42:06','c30c939ede1acd15ea99d1c91d2357b6618e119bc085fb5cfaf4b8602ce639cfd8bc3252df4b71e8dc1912d4cae2e4d94b3b076e214d1a0afe9ec3d56d884719','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_eeg.tgz'); -INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (12,12,'2023-02-09 10:57:10','f1fdcf47639ef9631dea6442d15c9c10641619d3cf7b755fac8e1bb1ff272fb4377bb7d2fcc8cfec99dc3614867833c144a9e46906a2d52e5087c7367d8fe13b','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_eeg.tgz'); -INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (13,13,'2023-02-09 11:09:22','cfec22a82dc5da16b515bba69b2129ff54cbbea98a204f48c453827a97420e3fd202968ccd317ed9a934e9cd0431672ae94c8395c13537a7158f94b6140f3f3d','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_eeg.tgz'); -INSERT INTO `physiological_archive` (`PhysiologicalArchiveID`, `PhysiologicalFileID`, `InsertTime`, `Blake2bHash`, `FilePath`) VALUES (14,14,'2023-02-09 11:13:11','85b16104f3cf7a6d10d11c1afddc8a01a55bb80497aed85cc28f196374d9be02b3b271bcbcc9410ffe831348f6570200a0793731e60e8b646eb18a326126c92c','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_eeg.tgz'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_channel.sql b/raisinbread/RB_files/RB_physiological_channel.sql index 143fa230556..75b08f3b02c 100644 --- a/raisinbread/RB_files/RB_physiological_channel.sql +++ b/raisinbread/RB_files/RB_physiological_channel.sql @@ -1281,521 +1281,5 @@ INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFil INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1278,10,1,1,'2019-08-21 15:11:22','D30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'microV','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_channels.tsv'); INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1279,10,1,1,'2019-08-21 15:11:22','D31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'microV','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_channels.tsv'); INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1280,10,1,1,'2019-08-21 15:11:22','D32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'microV','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1281,11,1,1,'2023-02-09 10:39:09','E1','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1282,11,1,1,'2023-02-09 10:39:09','E2','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1283,11,1,1,'2023-02-09 10:39:09','E3','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1284,11,1,1,'2023-02-09 10:39:09','E4','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1285,11,1,1,'2023-02-09 10:39:09','E5','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1286,11,1,1,'2023-02-09 10:39:09','E6','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1287,11,1,1,'2023-02-09 10:39:09','E7','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1288,11,1,1,'2023-02-09 10:39:09','E8','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1289,11,1,1,'2023-02-09 10:39:09','E9','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1290,11,1,1,'2023-02-09 10:39:09','E10','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1291,11,1,1,'2023-02-09 10:39:09','E11','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1292,11,1,1,'2023-02-09 10:39:09','E12','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1293,11,1,1,'2023-02-09 10:39:09','E13','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1294,11,1,1,'2023-02-09 10:39:09','E14','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1295,11,1,1,'2023-02-09 10:39:09','E15','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1296,11,1,1,'2023-02-09 10:39:09','E16','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1297,11,1,1,'2023-02-09 10:39:09','E17','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1298,11,1,1,'2023-02-09 10:39:09','E18','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1299,11,1,1,'2023-02-09 10:39:09','E19','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1300,11,1,1,'2023-02-09 10:39:09','E20','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1301,11,1,1,'2023-02-09 10:39:09','E21','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1302,11,1,1,'2023-02-09 10:39:09','E22','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1303,11,1,1,'2023-02-09 10:39:09','E23','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1304,11,1,1,'2023-02-09 10:39:09','E24','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1305,11,1,1,'2023-02-09 10:39:09','E25','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1306,11,1,1,'2023-02-09 10:39:09','E26','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1307,11,1,1,'2023-02-09 10:39:09','E27','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1308,11,1,1,'2023-02-09 10:39:09','E28','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1309,11,1,1,'2023-02-09 10:39:09','E29','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1310,11,1,1,'2023-02-09 10:39:09','E30','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1311,11,1,1,'2023-02-09 10:39:09','E31','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1312,11,1,1,'2023-02-09 10:39:09','E32','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1313,11,1,1,'2023-02-09 10:39:09','E33','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1314,11,1,1,'2023-02-09 10:39:09','E34','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1315,11,1,1,'2023-02-09 10:39:09','E35','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1316,11,1,1,'2023-02-09 10:39:09','E36','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1317,11,1,1,'2023-02-09 10:39:09','E37','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1318,11,1,1,'2023-02-09 10:39:09','E38','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1319,11,1,1,'2023-02-09 10:39:09','E39','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1320,11,1,1,'2023-02-09 10:39:09','E40','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1321,11,1,1,'2023-02-09 10:39:09','E41','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1322,11,1,1,'2023-02-09 10:39:09','E42','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1323,11,1,1,'2023-02-09 10:39:09','E43','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1324,11,1,1,'2023-02-09 10:39:09','E44','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1325,11,1,1,'2023-02-09 10:39:09','E45','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1326,11,1,1,'2023-02-09 10:39:09','E46','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1327,11,1,1,'2023-02-09 10:39:09','E47','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1328,11,1,1,'2023-02-09 10:39:09','E48','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1329,11,1,1,'2023-02-09 10:39:09','E49','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1330,11,1,1,'2023-02-09 10:39:09','E50','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1331,11,1,1,'2023-02-09 10:39:09','E51','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1332,11,1,1,'2023-02-09 10:39:09','E52','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1333,11,1,1,'2023-02-09 10:39:09','E53','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1334,11,1,1,'2023-02-09 10:39:09','E54','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1335,11,1,1,'2023-02-09 10:39:09','E55','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1336,11,1,1,'2023-02-09 10:39:09','E56','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1337,11,1,1,'2023-02-09 10:39:09','E57','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1338,11,1,1,'2023-02-09 10:39:09','E58','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1339,11,1,1,'2023-02-09 10:39:09','E59','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1340,11,1,1,'2023-02-09 10:39:09','E60','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1341,11,1,1,'2023-02-09 10:39:09','E61','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1342,11,1,1,'2023-02-09 10:39:09','E62','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1343,11,1,1,'2023-02-09 10:39:09','E63','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1344,11,1,1,'2023-02-09 10:39:09','E64','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1345,11,1,1,'2023-02-09 10:39:09','E65','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1346,11,1,1,'2023-02-09 10:39:09','E66','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1347,11,1,1,'2023-02-09 10:39:09','E67','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1348,11,1,1,'2023-02-09 10:39:09','E68','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1349,11,1,1,'2023-02-09 10:39:09','E69','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1350,11,1,1,'2023-02-09 10:39:09','E70','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1351,11,1,1,'2023-02-09 10:39:09','E71','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1352,11,1,1,'2023-02-09 10:39:09','E72','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1353,11,1,1,'2023-02-09 10:39:09','E73','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1354,11,1,1,'2023-02-09 10:39:09','E74','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1355,11,1,1,'2023-02-09 10:39:09','E75','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1356,11,1,1,'2023-02-09 10:39:09','E76','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1357,11,1,1,'2023-02-09 10:39:09','E77','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1358,11,1,1,'2023-02-09 10:39:09','E78','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1359,11,1,1,'2023-02-09 10:39:09','E79','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1360,11,1,1,'2023-02-09 10:39:09','E80','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1361,11,1,1,'2023-02-09 10:39:09','E81','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1362,11,1,1,'2023-02-09 10:39:09','E82','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1363,11,1,1,'2023-02-09 10:39:09','E83','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1364,11,1,1,'2023-02-09 10:39:09','E84','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1365,11,1,1,'2023-02-09 10:39:09','E85','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1366,11,1,1,'2023-02-09 10:39:09','E86','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1367,11,1,1,'2023-02-09 10:39:09','E87','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1368,11,1,1,'2023-02-09 10:39:09','E88','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1369,11,1,1,'2023-02-09 10:39:09','E89','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1370,11,1,1,'2023-02-09 10:39:09','E90','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1371,11,1,1,'2023-02-09 10:39:09','E91','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1372,11,1,1,'2023-02-09 10:39:09','E92','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1373,11,1,1,'2023-02-09 10:39:09','E93','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1374,11,1,1,'2023-02-09 10:39:09','E94','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1375,11,1,1,'2023-02-09 10:39:09','E95','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1376,11,1,1,'2023-02-09 10:39:09','E96','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1377,11,1,1,'2023-02-09 10:39:09','E97','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1378,11,1,1,'2023-02-09 10:39:09','E98','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1379,11,1,1,'2023-02-09 10:39:09','E99','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1380,11,1,1,'2023-02-09 10:39:09','E100','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1381,11,1,1,'2023-02-09 10:39:09','E101','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1382,11,1,1,'2023-02-09 10:39:09','E102','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1383,11,1,1,'2023-02-09 10:39:09','E103','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1384,11,1,1,'2023-02-09 10:39:09','E104','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1385,11,1,1,'2023-02-09 10:39:09','E105','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1386,11,1,1,'2023-02-09 10:39:09','E106','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1387,11,1,1,'2023-02-09 10:39:09','E107','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1388,11,1,1,'2023-02-09 10:39:09','E108','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1389,11,1,1,'2023-02-09 10:39:09','E109','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1390,11,1,1,'2023-02-09 10:39:09','E110','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1391,11,1,1,'2023-02-09 10:39:09','E111','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1392,11,1,1,'2023-02-09 10:39:09','E112','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1393,11,1,1,'2023-02-09 10:39:09','E113','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1394,11,1,1,'2023-02-09 10:39:09','E114','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1395,11,1,1,'2023-02-09 10:39:09','E115','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1396,11,1,1,'2023-02-09 10:39:09','E116','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1397,11,1,1,'2023-02-09 10:39:09','E117','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1398,11,1,1,'2023-02-09 10:39:09','E118','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1399,11,1,1,'2023-02-09 10:39:09','E119','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1400,11,1,1,'2023-02-09 10:39:09','E120','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1401,11,1,1,'2023-02-09 10:39:09','E121','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1402,11,1,1,'2023-02-09 10:39:09','E122','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1403,11,1,1,'2023-02-09 10:39:09','E123','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1404,11,1,1,'2023-02-09 10:39:09','E124','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1405,11,1,1,'2023-02-09 10:39:09','E125','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1406,11,1,1,'2023-02-09 10:39:09','E126','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1407,11,1,1,'2023-02-09 10:39:09','E127','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1408,11,1,1,'2023-02-09 10:39:09','E128','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1409,11,1,1,'2023-02-09 10:39:09','E129','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1410,12,1,1,'2023-02-09 10:46:31','E1','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1411,12,1,1,'2023-02-09 10:46:31','E2','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1412,12,1,1,'2023-02-09 10:46:31','E3','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1413,12,1,1,'2023-02-09 10:46:31','E4','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1414,12,1,1,'2023-02-09 10:46:31','E5','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1415,12,1,1,'2023-02-09 10:46:31','E6','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1416,12,1,1,'2023-02-09 10:46:31','E7','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1417,12,1,1,'2023-02-09 10:46:31','E8','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1418,12,1,1,'2023-02-09 10:46:31','E9','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1419,12,1,1,'2023-02-09 10:46:31','E10','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1420,12,1,1,'2023-02-09 10:46:31','E11','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1421,12,1,1,'2023-02-09 10:46:31','E12','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1422,12,1,1,'2023-02-09 10:46:31','E13','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1423,12,1,1,'2023-02-09 10:46:31','E14','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1424,12,1,1,'2023-02-09 10:46:31','E15','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1425,12,1,1,'2023-02-09 10:46:31','E16','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1426,12,1,1,'2023-02-09 10:46:31','E17','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1427,12,1,1,'2023-02-09 10:46:31','E18','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1428,12,1,1,'2023-02-09 10:46:31','E19','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1429,12,1,1,'2023-02-09 10:46:31','E20','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1430,12,1,1,'2023-02-09 10:46:31','E21','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1431,12,1,1,'2023-02-09 10:46:31','E22','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1432,12,1,1,'2023-02-09 10:46:31','E23','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1433,12,1,1,'2023-02-09 10:46:31','E24','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1434,12,1,1,'2023-02-09 10:46:31','E25','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1435,12,1,1,'2023-02-09 10:46:31','E26','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1436,12,1,1,'2023-02-09 10:46:31','E27','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1437,12,1,1,'2023-02-09 10:46:31','E28','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1438,12,1,1,'2023-02-09 10:46:31','E29','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1439,12,1,1,'2023-02-09 10:46:31','E30','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1440,12,1,1,'2023-02-09 10:46:31','E31','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1441,12,1,1,'2023-02-09 10:46:31','E32','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1442,12,1,1,'2023-02-09 10:46:31','E33','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1443,12,1,1,'2023-02-09 10:46:31','E34','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1444,12,1,1,'2023-02-09 10:46:31','E35','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1445,12,1,1,'2023-02-09 10:46:31','E36','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1446,12,1,1,'2023-02-09 10:46:31','E37','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1447,12,1,1,'2023-02-09 10:46:31','E38','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1448,12,1,1,'2023-02-09 10:46:31','E39','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1449,12,1,1,'2023-02-09 10:46:31','E40','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1450,12,1,1,'2023-02-09 10:46:31','E41','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1451,12,1,1,'2023-02-09 10:46:31','E42','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1452,12,1,1,'2023-02-09 10:46:31','E43','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1453,12,1,1,'2023-02-09 10:46:31','E44','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1454,12,1,1,'2023-02-09 10:46:31','E45','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1455,12,1,1,'2023-02-09 10:46:31','E46','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1456,12,1,1,'2023-02-09 10:46:31','E47','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1457,12,1,1,'2023-02-09 10:46:31','E48','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1458,12,1,1,'2023-02-09 10:46:31','E49','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1459,12,1,1,'2023-02-09 10:46:31','E50','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1460,12,1,1,'2023-02-09 10:46:31','E51','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1461,12,1,1,'2023-02-09 10:46:31','E52','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1462,12,1,1,'2023-02-09 10:46:31','E53','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1463,12,1,1,'2023-02-09 10:46:31','E54','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1464,12,1,1,'2023-02-09 10:46:31','E55','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1465,12,1,1,'2023-02-09 10:46:31','E56','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1466,12,1,1,'2023-02-09 10:46:31','E57','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1467,12,1,1,'2023-02-09 10:46:31','E58','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1468,12,1,1,'2023-02-09 10:46:31','E59','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1469,12,1,1,'2023-02-09 10:46:31','E60','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1470,12,1,1,'2023-02-09 10:46:31','E61','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1471,12,1,1,'2023-02-09 10:46:31','E62','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1472,12,1,1,'2023-02-09 10:46:31','E63','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1473,12,1,1,'2023-02-09 10:46:31','E64','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1474,12,1,1,'2023-02-09 10:46:31','E65','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1475,12,1,1,'2023-02-09 10:46:31','E66','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1476,12,1,1,'2023-02-09 10:46:31','E67','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1477,12,1,1,'2023-02-09 10:46:31','E68','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1478,12,1,1,'2023-02-09 10:46:31','E69','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1479,12,1,1,'2023-02-09 10:46:31','E70','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1480,12,1,1,'2023-02-09 10:46:31','E71','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1481,12,1,1,'2023-02-09 10:46:31','E72','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1482,12,1,1,'2023-02-09 10:46:31','E73','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1483,12,1,1,'2023-02-09 10:46:31','E74','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1484,12,1,1,'2023-02-09 10:46:31','E75','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1485,12,1,1,'2023-02-09 10:46:31','E76','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1486,12,1,1,'2023-02-09 10:46:31','E77','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1487,12,1,1,'2023-02-09 10:46:31','E78','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1488,12,1,1,'2023-02-09 10:46:31','E79','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1489,12,1,1,'2023-02-09 10:46:31','E80','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1490,12,1,1,'2023-02-09 10:46:31','E81','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1491,12,1,1,'2023-02-09 10:46:31','E82','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1492,12,1,1,'2023-02-09 10:46:31','E83','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1493,12,1,1,'2023-02-09 10:46:31','E84','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1494,12,1,1,'2023-02-09 10:46:31','E85','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1495,12,1,1,'2023-02-09 10:46:31','E86','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1496,12,1,1,'2023-02-09 10:46:31','E87','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1497,12,1,1,'2023-02-09 10:46:31','E88','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1498,12,1,1,'2023-02-09 10:46:31','E89','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1499,12,1,1,'2023-02-09 10:46:31','E90','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1500,12,1,1,'2023-02-09 10:46:31','E91','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1501,12,1,1,'2023-02-09 10:46:31','E92','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1502,12,1,1,'2023-02-09 10:46:31','E93','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1503,12,1,1,'2023-02-09 10:46:31','E94','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1504,12,1,1,'2023-02-09 10:46:31','E95','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1505,12,1,1,'2023-02-09 10:46:31','E96','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1506,12,1,1,'2023-02-09 10:46:31','E97','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1507,12,1,1,'2023-02-09 10:46:31','E98','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1508,12,1,1,'2023-02-09 10:46:31','E99','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1509,12,1,1,'2023-02-09 10:46:31','E100','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1510,12,1,1,'2023-02-09 10:46:31','E101','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1511,12,1,1,'2023-02-09 10:46:31','E102','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1512,12,1,1,'2023-02-09 10:46:31','E103','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1513,12,1,1,'2023-02-09 10:46:31','E104','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1514,12,1,1,'2023-02-09 10:46:31','E105','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1515,12,1,1,'2023-02-09 10:46:31','E106','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1516,12,1,1,'2023-02-09 10:46:31','E107','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1517,12,1,1,'2023-02-09 10:46:31','E108','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1518,12,1,1,'2023-02-09 10:46:31','E109','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1519,12,1,1,'2023-02-09 10:46:31','E110','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1520,12,1,1,'2023-02-09 10:46:31','E111','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1521,12,1,1,'2023-02-09 10:46:31','E112','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1522,12,1,1,'2023-02-09 10:46:31','E113','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1523,12,1,1,'2023-02-09 10:46:31','E114','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1524,12,1,1,'2023-02-09 10:46:31','E115','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1525,12,1,1,'2023-02-09 10:46:31','E116','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1526,12,1,1,'2023-02-09 10:46:31','E117','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1527,12,1,1,'2023-02-09 10:46:31','E118','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1528,12,1,1,'2023-02-09 10:46:31','E119','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1529,12,1,1,'2023-02-09 10:46:31','E120','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1530,12,1,1,'2023-02-09 10:46:31','E121','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1531,12,1,1,'2023-02-09 10:46:31','E122','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1532,12,1,1,'2023-02-09 10:46:31','E123','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1533,12,1,1,'2023-02-09 10:46:31','E124','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1534,12,1,1,'2023-02-09 10:46:31','E125','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1535,12,1,1,'2023-02-09 10:46:31','E126','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1536,12,1,1,'2023-02-09 10:46:31','E127','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1537,12,1,1,'2023-02-09 10:46:31','E128','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1538,12,1,1,'2023-02-09 10:46:31','E129','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1539,13,1,1,'2023-02-09 11:06:27','E1','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1540,13,1,1,'2023-02-09 11:06:27','E2','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1541,13,1,1,'2023-02-09 11:06:27','E3','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1542,13,1,1,'2023-02-09 11:06:27','E4','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1543,13,1,1,'2023-02-09 11:06:27','E5','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1544,13,1,1,'2023-02-09 11:06:27','E6','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1545,13,1,1,'2023-02-09 11:06:27','E7','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1546,13,1,1,'2023-02-09 11:06:27','E8','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1547,13,1,1,'2023-02-09 11:06:27','E9','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1548,13,1,1,'2023-02-09 11:06:27','E10','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1549,13,1,1,'2023-02-09 11:06:27','E11','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1550,13,1,1,'2023-02-09 11:06:27','E12','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1551,13,1,1,'2023-02-09 11:06:27','E13','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1552,13,1,1,'2023-02-09 11:06:27','E14','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1553,13,1,1,'2023-02-09 11:06:27','E15','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1554,13,1,1,'2023-02-09 11:06:27','E16','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1555,13,1,1,'2023-02-09 11:06:27','E17','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1556,13,1,1,'2023-02-09 11:06:27','E18','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1557,13,1,1,'2023-02-09 11:06:27','E19','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1558,13,1,1,'2023-02-09 11:06:27','E20','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1559,13,1,1,'2023-02-09 11:06:27','E21','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1560,13,1,1,'2023-02-09 11:06:27','E22','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1561,13,1,1,'2023-02-09 11:06:27','E23','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1562,13,1,1,'2023-02-09 11:06:27','E24','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1563,13,1,1,'2023-02-09 11:06:27','E25','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1564,13,1,1,'2023-02-09 11:06:27','E26','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1565,13,1,1,'2023-02-09 11:06:27','E27','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1566,13,1,1,'2023-02-09 11:06:27','E28','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1567,13,1,1,'2023-02-09 11:06:27','E29','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1568,13,1,1,'2023-02-09 11:06:27','E30','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1569,13,1,1,'2023-02-09 11:06:27','E31','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1570,13,1,1,'2023-02-09 11:06:27','E32','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1571,13,1,1,'2023-02-09 11:06:27','E33','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1572,13,1,1,'2023-02-09 11:06:27','E34','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1573,13,1,1,'2023-02-09 11:06:27','E35','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1574,13,1,1,'2023-02-09 11:06:27','E36','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1575,13,1,1,'2023-02-09 11:06:27','E37','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1576,13,1,1,'2023-02-09 11:06:27','E38','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1577,13,1,1,'2023-02-09 11:06:27','E39','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1578,13,1,1,'2023-02-09 11:06:27','E40','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1579,13,1,1,'2023-02-09 11:06:27','E41','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1580,13,1,1,'2023-02-09 11:06:27','E42','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1581,13,1,1,'2023-02-09 11:06:27','E43','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1582,13,1,1,'2023-02-09 11:06:27','E44','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1583,13,1,1,'2023-02-09 11:06:27','E45','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1584,13,1,1,'2023-02-09 11:06:27','E46','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1585,13,1,1,'2023-02-09 11:06:27','E47','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1586,13,1,1,'2023-02-09 11:06:27','E48','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1587,13,1,1,'2023-02-09 11:06:27','E49','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1588,13,1,1,'2023-02-09 11:06:27','E50','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1589,13,1,1,'2023-02-09 11:06:27','E51','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1590,13,1,1,'2023-02-09 11:06:27','E52','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1591,13,1,1,'2023-02-09 11:06:27','E53','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1592,13,1,1,'2023-02-09 11:06:27','E54','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1593,13,1,1,'2023-02-09 11:06:27','E55','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1594,13,1,1,'2023-02-09 11:06:27','E56','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1595,13,1,1,'2023-02-09 11:06:27','E57','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1596,13,1,1,'2023-02-09 11:06:27','E58','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1597,13,1,1,'2023-02-09 11:06:27','E59','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1598,13,1,1,'2023-02-09 11:06:27','E60','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1599,13,1,1,'2023-02-09 11:06:27','E61','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1600,13,1,1,'2023-02-09 11:06:27','E62','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1601,13,1,1,'2023-02-09 11:06:27','E63','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1602,13,1,1,'2023-02-09 11:06:27','E64','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1603,13,1,1,'2023-02-09 11:06:27','E65','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1604,13,1,1,'2023-02-09 11:06:27','E66','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1605,13,1,1,'2023-02-09 11:06:27','E67','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1606,13,1,1,'2023-02-09 11:06:27','E68','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1607,13,1,1,'2023-02-09 11:06:27','E69','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1608,13,1,1,'2023-02-09 11:06:27','E70','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1609,13,1,1,'2023-02-09 11:06:27','E71','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1610,13,1,1,'2023-02-09 11:06:27','E72','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1611,13,1,1,'2023-02-09 11:06:27','E73','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1612,13,1,1,'2023-02-09 11:06:27','E74','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1613,13,1,1,'2023-02-09 11:06:27','E75','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1614,13,1,1,'2023-02-09 11:06:27','E76','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1615,13,1,1,'2023-02-09 11:06:27','E77','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1616,13,1,1,'2023-02-09 11:06:27','E78','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1617,13,1,1,'2023-02-09 11:06:27','E79','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1618,13,1,1,'2023-02-09 11:06:27','E80','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1619,13,1,1,'2023-02-09 11:06:27','E81','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1620,13,1,1,'2023-02-09 11:06:27','E82','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1621,13,1,1,'2023-02-09 11:06:27','E83','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1622,13,1,1,'2023-02-09 11:06:27','E84','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1623,13,1,1,'2023-02-09 11:06:27','E85','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1624,13,1,1,'2023-02-09 11:06:27','E86','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1625,13,1,1,'2023-02-09 11:06:27','E87','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1626,13,1,1,'2023-02-09 11:06:27','E88','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1627,13,1,1,'2023-02-09 11:06:27','E89','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1628,13,1,1,'2023-02-09 11:06:27','E90','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1629,13,1,1,'2023-02-09 11:06:27','E91','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1630,13,1,1,'2023-02-09 11:06:27','E92','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1631,13,1,1,'2023-02-09 11:06:27','E93','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1632,13,1,1,'2023-02-09 11:06:27','E94','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1633,13,1,1,'2023-02-09 11:06:27','E95','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1634,13,1,1,'2023-02-09 11:06:27','E96','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1635,13,1,1,'2023-02-09 11:06:27','E97','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1636,13,1,1,'2023-02-09 11:06:27','E98','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1637,13,1,1,'2023-02-09 11:06:27','E99','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1638,13,1,1,'2023-02-09 11:06:27','E100','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1639,13,1,1,'2023-02-09 11:06:27','E101','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1640,13,1,1,'2023-02-09 11:06:27','E102','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1641,13,1,1,'2023-02-09 11:06:27','E103','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1642,13,1,1,'2023-02-09 11:06:27','E104','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1643,13,1,1,'2023-02-09 11:06:27','E105','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1644,13,1,1,'2023-02-09 11:06:27','E106','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1645,13,1,1,'2023-02-09 11:06:27','E107','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1646,13,1,1,'2023-02-09 11:06:27','E108','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1647,13,1,1,'2023-02-09 11:06:27','E109','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1648,13,1,1,'2023-02-09 11:06:27','E110','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1649,13,1,1,'2023-02-09 11:06:27','E111','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1650,13,1,1,'2023-02-09 11:06:27','E112','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1651,13,1,1,'2023-02-09 11:06:27','E113','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1652,13,1,1,'2023-02-09 11:06:27','E114','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1653,13,1,1,'2023-02-09 11:06:27','E115','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1654,13,1,1,'2023-02-09 11:06:27','E116','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1655,13,1,1,'2023-02-09 11:06:27','E117','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1656,13,1,1,'2023-02-09 11:06:27','E118','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1657,13,1,1,'2023-02-09 11:06:27','E119','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1658,13,1,1,'2023-02-09 11:06:27','E120','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1659,13,1,1,'2023-02-09 11:06:27','E121','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1660,13,1,1,'2023-02-09 11:06:27','E122','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1661,13,1,1,'2023-02-09 11:06:27','E123','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1662,13,1,1,'2023-02-09 11:06:27','E124','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1663,13,1,1,'2023-02-09 11:06:27','E125','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1664,13,1,1,'2023-02-09 11:06:27','E126','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1665,13,1,1,'2023-02-09 11:06:27','E127','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1666,13,1,1,'2023-02-09 11:06:27','E128','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1667,13,1,1,'2023-02-09 11:06:27','E129','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1668,14,1,1,'2023-02-09 11:12:06','E1','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1669,14,1,1,'2023-02-09 11:12:06','E2','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1670,14,1,1,'2023-02-09 11:12:06','E3','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1671,14,1,1,'2023-02-09 11:12:06','E4','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1672,14,1,1,'2023-02-09 11:12:06','E5','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1673,14,1,1,'2023-02-09 11:12:06','E6','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1674,14,1,1,'2023-02-09 11:12:06','E7','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1675,14,1,1,'2023-02-09 11:12:06','E8','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1676,14,1,1,'2023-02-09 11:12:06','E9','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1677,14,1,1,'2023-02-09 11:12:06','E10','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1678,14,1,1,'2023-02-09 11:12:06','E11','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1679,14,1,1,'2023-02-09 11:12:06','E12','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1680,14,1,1,'2023-02-09 11:12:06','E13','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1681,14,1,1,'2023-02-09 11:12:06','E14','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1682,14,1,1,'2023-02-09 11:12:06','E15','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1683,14,1,1,'2023-02-09 11:12:06','E16','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1684,14,1,1,'2023-02-09 11:12:06','E17','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1685,14,1,1,'2023-02-09 11:12:06','E18','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1686,14,1,1,'2023-02-09 11:12:06','E19','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1687,14,1,1,'2023-02-09 11:12:06','E20','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1688,14,1,1,'2023-02-09 11:12:06','E21','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1689,14,1,1,'2023-02-09 11:12:06','E22','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1690,14,1,1,'2023-02-09 11:12:06','E23','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1691,14,1,1,'2023-02-09 11:12:06','E24','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1692,14,1,1,'2023-02-09 11:12:06','E25','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1693,14,1,1,'2023-02-09 11:12:06','E26','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1694,14,1,1,'2023-02-09 11:12:06','E27','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1695,14,1,1,'2023-02-09 11:12:06','E28','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1696,14,1,1,'2023-02-09 11:12:06','E29','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1697,14,1,1,'2023-02-09 11:12:06','E30','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1698,14,1,1,'2023-02-09 11:12:06','E31','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1699,14,1,1,'2023-02-09 11:12:06','E32','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1700,14,1,1,'2023-02-09 11:12:06','E33','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1701,14,1,1,'2023-02-09 11:12:06','E34','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1702,14,1,1,'2023-02-09 11:12:06','E35','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1703,14,1,1,'2023-02-09 11:12:06','E36','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1704,14,1,1,'2023-02-09 11:12:06','E37','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1705,14,1,1,'2023-02-09 11:12:06','E38','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1706,14,1,1,'2023-02-09 11:12:06','E39','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1707,14,1,1,'2023-02-09 11:12:06','E40','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1708,14,1,1,'2023-02-09 11:12:06','E41','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1709,14,1,1,'2023-02-09 11:12:06','E42','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1710,14,1,1,'2023-02-09 11:12:06','E43','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1711,14,1,1,'2023-02-09 11:12:06','E44','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1712,14,1,1,'2023-02-09 11:12:06','E45','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1713,14,1,1,'2023-02-09 11:12:06','E46','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1714,14,1,1,'2023-02-09 11:12:06','E47','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1715,14,1,1,'2023-02-09 11:12:06','E48','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1716,14,1,1,'2023-02-09 11:12:06','E49','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1717,14,1,1,'2023-02-09 11:12:06','E50','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1718,14,1,1,'2023-02-09 11:12:06','E51','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1719,14,1,1,'2023-02-09 11:12:06','E52','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1720,14,1,1,'2023-02-09 11:12:06','E53','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1721,14,1,1,'2023-02-09 11:12:06','E54','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1722,14,1,1,'2023-02-09 11:12:06','E55','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1723,14,1,1,'2023-02-09 11:12:06','E56','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1724,14,1,1,'2023-02-09 11:12:06','E57','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1725,14,1,1,'2023-02-09 11:12:06','E58','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1726,14,1,1,'2023-02-09 11:12:06','E59','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1727,14,1,1,'2023-02-09 11:12:06','E60','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1728,14,1,1,'2023-02-09 11:12:06','E61','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1729,14,1,1,'2023-02-09 11:12:06','E62','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1730,14,1,1,'2023-02-09 11:12:06','E63','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1731,14,1,1,'2023-02-09 11:12:06','E64','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1732,14,1,1,'2023-02-09 11:12:06','E65','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1733,14,1,1,'2023-02-09 11:12:06','E66','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1734,14,1,1,'2023-02-09 11:12:06','E67','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1735,14,1,1,'2023-02-09 11:12:06','E68','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1736,14,1,1,'2023-02-09 11:12:06','E69','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1737,14,1,1,'2023-02-09 11:12:06','E70','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1738,14,1,1,'2023-02-09 11:12:06','E71','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1739,14,1,1,'2023-02-09 11:12:06','E72','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1740,14,1,1,'2023-02-09 11:12:06','E73','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1741,14,1,1,'2023-02-09 11:12:06','E74','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1742,14,1,1,'2023-02-09 11:12:06','E75','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1743,14,1,1,'2023-02-09 11:12:06','E76','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1744,14,1,1,'2023-02-09 11:12:06','E77','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1745,14,1,1,'2023-02-09 11:12:06','E78','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1746,14,1,1,'2023-02-09 11:12:06','E79','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1747,14,1,1,'2023-02-09 11:12:06','E80','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1748,14,1,1,'2023-02-09 11:12:06','E81','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1749,14,1,1,'2023-02-09 11:12:06','E82','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1750,14,1,1,'2023-02-09 11:12:06','E83','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1751,14,1,1,'2023-02-09 11:12:06','E84','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1752,14,1,1,'2023-02-09 11:12:06','E85','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1753,14,1,1,'2023-02-09 11:12:06','E86','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1754,14,1,1,'2023-02-09 11:12:06','E87','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1755,14,1,1,'2023-02-09 11:12:06','E88','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1756,14,1,1,'2023-02-09 11:12:06','E89','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1757,14,1,1,'2023-02-09 11:12:06','E90','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1758,14,1,1,'2023-02-09 11:12:06','E91','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1759,14,1,1,'2023-02-09 11:12:06','E92','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1760,14,1,1,'2023-02-09 11:12:06','E93','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1761,14,1,1,'2023-02-09 11:12:06','E94','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1762,14,1,1,'2023-02-09 11:12:06','E95','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1763,14,1,1,'2023-02-09 11:12:06','E96','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1764,14,1,1,'2023-02-09 11:12:06','E97','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1765,14,1,1,'2023-02-09 11:12:06','E98','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1766,14,1,1,'2023-02-09 11:12:06','E99','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1767,14,1,1,'2023-02-09 11:12:06','E100','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1768,14,1,1,'2023-02-09 11:12:06','E101','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1769,14,1,1,'2023-02-09 11:12:06','E102','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1770,14,1,1,'2023-02-09 11:12:06','E103','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1771,14,1,1,'2023-02-09 11:12:06','E104','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1772,14,1,1,'2023-02-09 11:12:06','E105','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1773,14,1,1,'2023-02-09 11:12:06','E106','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1774,14,1,1,'2023-02-09 11:12:06','E107','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1775,14,1,1,'2023-02-09 11:12:06','E108','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1776,14,1,1,'2023-02-09 11:12:06','E109','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1777,14,1,1,'2023-02-09 11:12:06','E110','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1778,14,1,1,'2023-02-09 11:12:06','E111','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1779,14,1,1,'2023-02-09 11:12:06','E112','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1780,14,1,1,'2023-02-09 11:12:06','E113','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1781,14,1,1,'2023-02-09 11:12:06','E114','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1782,14,1,1,'2023-02-09 11:12:06','E115','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1783,14,1,1,'2023-02-09 11:12:06','E116','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1784,14,1,1,'2023-02-09 11:12:06','E117','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1785,14,1,1,'2023-02-09 11:12:06','E118','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1786,14,1,1,'2023-02-09 11:12:06','E119','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1787,14,1,1,'2023-02-09 11:12:06','E120','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1788,14,1,1,'2023-02-09 11:12:06','E121','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1789,14,1,1,'2023-02-09 11:12:06','E122','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1790,14,1,1,'2023-02-09 11:12:06','E123','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1791,14,1,1,'2023-02-09 11:12:06','E124','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1792,14,1,1,'2023-02-09 11:12:06','E125','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1793,14,1,1,'2023-02-09 11:12:06','E126','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1794,14,1,1,'2023-02-09 11:12:06','E127','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1795,14,1,1,'2023-02-09 11:12:06','E128','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); -INSERT INTO `physiological_channel` (`PhysiologicalChannelID`, `PhysiologicalFileID`, `PhysiologicalChannelTypeID`, `PhysiologicalStatusTypeID`, `InsertTime`, `Name`, `Description`, `SamplingFrequency`, `LowCutoff`, `HighCutoff`, `ManualFlag`, `Notch`, `Reference`, `StatusDescription`, `Unit`, `FilePath`) VALUES (1796,14,1,1,'2023-02-09 11:12:06','E129','ElectroEncephaloGram',1000,0.000,500.000,NULL,NULL,NULL,'n/a','V','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_channels.tsv'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_coord_system.sql b/raisinbread/RB_files/RB_physiological_coord_system.sql index 96335e55193..8847ed358ba 100644 --- a/raisinbread/RB_files/RB_physiological_coord_system.sql +++ b/raisinbread/RB_files/RB_physiological_coord_system.sql @@ -2,7 +2,5 @@ SET FOREIGN_KEY_CHECKS=0; TRUNCATE TABLE `physiological_coord_system`; LOCK TABLES `physiological_coord_system` WRITE; INSERT INTO `physiological_coord_system` (`PhysiologicalCoordSystemID`, `NameID`, `TypeID`, `UnitID`, `ModalityID`, `FilePath`) VALUES (1,1,1,1,4,NULL); -INSERT INTO `physiological_coord_system` (`PhysiologicalCoordSystemID`, `NameID`, `TypeID`, `UnitID`, `ModalityID`, `FilePath`) VALUES (2,9,3,4,1,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_coordsystem.json'); -INSERT INTO `physiological_coord_system` (`PhysiologicalCoordSystemID`, `NameID`, `TypeID`, `UnitID`, `ModalityID`, `FilePath`) VALUES (3,6,3,4,1,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_coordsystem.json'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_coord_system_point_3d_rel.sql b/raisinbread/RB_files/RB_physiological_coord_system_point_3d_rel.sql index 0829ee82433..2d1b043b1fd 100644 --- a/raisinbread/RB_files/RB_physiological_coord_system_point_3d_rel.sql +++ b/raisinbread/RB_files/RB_physiological_coord_system_point_3d_rel.sql @@ -1,11 +1,5 @@ SET FOREIGN_KEY_CHECKS=0; TRUNCATE TABLE `physiological_coord_system_point_3d_rel`; LOCK TABLES `physiological_coord_system_point_3d_rel` WRITE; -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (2,385,'NAS'); -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (2,386,'LPA'); -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (2,387,'RPA'); -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (3,385,'NAS'); -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (3,386,'LPA'); -INSERT INTO `physiological_coord_system_point_3d_rel` (`PhysiologicalCoordSystemID`, `Point3DID`, `Name`) VALUES (3,387,'RPA'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_electrode.sql b/raisinbread/RB_files/RB_physiological_electrode.sql index ade4e3b260c..c7556798516 100644 --- a/raisinbread/RB_files/RB_physiological_electrode.sql +++ b/raisinbread/RB_files/RB_physiological_electrode.sql @@ -1281,1037 +1281,5 @@ INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `Physiologica INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1278,1,1,'D30',126,NULL,'bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_electrodes.tsv'); INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1279,1,1,'D31',127,NULL,'bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_electrodes.tsv'); INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1280,1,1,'D32',128,NULL,'bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1281,NULL,NULL,'E1',256,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1282,NULL,NULL,'E2',257,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1283,NULL,NULL,'E3',258,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1284,NULL,NULL,'E4',259,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1285,NULL,NULL,'E5',260,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1286,NULL,NULL,'E6',261,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1287,NULL,NULL,'E7',262,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1288,NULL,NULL,'E8',263,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1289,NULL,NULL,'E9',264,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1290,NULL,NULL,'E10',265,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1291,NULL,NULL,'E11',266,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1292,NULL,NULL,'E12',267,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1293,NULL,NULL,'E13',268,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1294,NULL,NULL,'E14',269,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1295,NULL,NULL,'E15',270,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1296,NULL,NULL,'E16',271,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1297,NULL,NULL,'E17',272,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1298,NULL,NULL,'E18',273,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1299,NULL,NULL,'E19',274,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1300,NULL,NULL,'E20',275,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1301,NULL,NULL,'E21',276,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1302,NULL,NULL,'E22',277,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1303,NULL,NULL,'E23',278,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1304,NULL,NULL,'E24',279,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1305,NULL,NULL,'E25',280,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1306,NULL,NULL,'E26',281,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1307,NULL,NULL,'E27',282,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1308,NULL,NULL,'E28',283,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1309,NULL,NULL,'E29',284,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1310,NULL,NULL,'E30',285,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1311,NULL,NULL,'E31',286,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1312,NULL,NULL,'E32',287,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1313,NULL,NULL,'E33',288,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1314,NULL,NULL,'E34',289,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1315,NULL,NULL,'E35',290,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1316,NULL,NULL,'E36',291,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1317,NULL,NULL,'E37',292,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1318,NULL,NULL,'E38',293,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1319,NULL,NULL,'E39',294,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1320,NULL,NULL,'E40',295,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1321,NULL,NULL,'E41',296,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1322,NULL,NULL,'E42',297,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1323,NULL,NULL,'E43',298,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1324,NULL,NULL,'E44',299,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1325,NULL,NULL,'E45',300,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1326,NULL,NULL,'E46',301,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1327,NULL,NULL,'E47',302,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1328,NULL,NULL,'E48',303,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1329,NULL,NULL,'E49',304,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1330,NULL,NULL,'E50',305,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1331,NULL,NULL,'E51',306,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1332,NULL,NULL,'E52',307,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1333,NULL,NULL,'E53',308,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1334,NULL,NULL,'E54',309,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1335,NULL,NULL,'E55',310,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1336,NULL,NULL,'E56',311,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1337,NULL,NULL,'E57',312,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1338,NULL,NULL,'E58',313,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1339,NULL,NULL,'E59',314,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1340,NULL,NULL,'E60',315,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1341,NULL,NULL,'E61',316,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1342,NULL,NULL,'E62',317,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1343,NULL,NULL,'E63',318,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1344,NULL,NULL,'E64',319,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1345,NULL,NULL,'E65',320,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1346,NULL,NULL,'E66',321,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1347,NULL,NULL,'E67',322,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1348,NULL,NULL,'E68',323,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1349,NULL,NULL,'E69',324,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1350,NULL,NULL,'E70',325,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1351,NULL,NULL,'E71',326,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1352,NULL,NULL,'E72',327,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1353,NULL,NULL,'E73',328,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1354,NULL,NULL,'E74',329,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1355,NULL,NULL,'E75',330,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1356,NULL,NULL,'E76',331,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1357,NULL,NULL,'E77',332,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1358,NULL,NULL,'E78',333,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1359,NULL,NULL,'E79',334,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1360,NULL,NULL,'E80',335,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1361,NULL,NULL,'E81',336,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1362,NULL,NULL,'E82',337,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1363,NULL,NULL,'E83',338,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1364,NULL,NULL,'E84',339,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1365,NULL,NULL,'E85',340,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1366,NULL,NULL,'E86',341,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1367,NULL,NULL,'E87',342,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1368,NULL,NULL,'E88',343,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1369,NULL,NULL,'E89',344,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1370,NULL,NULL,'E90',345,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1371,NULL,NULL,'E91',346,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1372,NULL,NULL,'E92',347,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1373,NULL,NULL,'E93',348,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1374,NULL,NULL,'E94',349,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1375,NULL,NULL,'E95',350,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1376,NULL,NULL,'E96',351,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1377,NULL,NULL,'E97',352,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1378,NULL,NULL,'E98',353,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1379,NULL,NULL,'E99',354,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1380,NULL,NULL,'E100',355,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1381,NULL,NULL,'E101',356,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1382,NULL,NULL,'E102',357,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1383,NULL,NULL,'E103',358,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1384,NULL,NULL,'E104',359,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1385,NULL,NULL,'E105',360,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1386,NULL,NULL,'E106',361,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1387,NULL,NULL,'E107',362,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1388,NULL,NULL,'E108',363,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1389,NULL,NULL,'E109',364,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1390,NULL,NULL,'E110',365,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1391,NULL,NULL,'E111',366,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1392,NULL,NULL,'E112',367,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1393,NULL,NULL,'E113',368,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1394,NULL,NULL,'E114',369,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1395,NULL,NULL,'E115',370,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1396,NULL,NULL,'E116',371,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1397,NULL,NULL,'E117',372,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1398,NULL,NULL,'E118',373,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1399,NULL,NULL,'E119',374,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1400,NULL,NULL,'E120',375,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1401,NULL,NULL,'E121',376,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1402,NULL,NULL,'E122',377,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1403,NULL,NULL,'E123',378,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1404,NULL,NULL,'E124',379,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1405,NULL,NULL,'E125',380,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1406,NULL,NULL,'E126',381,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1407,NULL,NULL,'E127',382,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1408,NULL,NULL,'E128',383,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1409,NULL,NULL,'E129',384,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1410,NULL,NULL,'E1',388,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1411,NULL,NULL,'E2',389,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1412,NULL,NULL,'E3',390,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1413,NULL,NULL,'E4',391,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1414,NULL,NULL,'E5',392,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1415,NULL,NULL,'E6',393,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1416,NULL,NULL,'E7',394,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1417,NULL,NULL,'E8',395,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1418,NULL,NULL,'E9',396,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1419,NULL,NULL,'E10',397,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1420,NULL,NULL,'E11',398,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1421,NULL,NULL,'E12',399,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1422,NULL,NULL,'E13',400,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1423,NULL,NULL,'E14',401,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1424,NULL,NULL,'E15',402,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1425,NULL,NULL,'E16',403,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1426,NULL,NULL,'E17',404,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1427,NULL,NULL,'E18',405,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1428,NULL,NULL,'E19',406,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1429,NULL,NULL,'E20',407,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1430,NULL,NULL,'E21',408,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1431,NULL,NULL,'E22',409,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1432,NULL,NULL,'E23',410,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1433,NULL,NULL,'E24',411,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1434,NULL,NULL,'E25',412,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1435,NULL,NULL,'E26',413,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1436,NULL,NULL,'E27',414,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1437,NULL,NULL,'E28',415,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1438,NULL,NULL,'E29',416,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1439,NULL,NULL,'E30',417,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1440,NULL,NULL,'E31',418,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1441,NULL,NULL,'E32',419,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1442,NULL,NULL,'E33',420,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1443,NULL,NULL,'E34',421,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1444,NULL,NULL,'E35',422,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1445,NULL,NULL,'E36',423,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1446,NULL,NULL,'E37',424,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1447,NULL,NULL,'E38',425,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1448,NULL,NULL,'E39',426,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1449,NULL,NULL,'E40',427,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1450,NULL,NULL,'E41',428,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1451,NULL,NULL,'E42',429,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1452,NULL,NULL,'E43',430,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1453,NULL,NULL,'E44',431,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1454,NULL,NULL,'E45',432,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1455,NULL,NULL,'E46',433,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1456,NULL,NULL,'E47',434,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1457,NULL,NULL,'E48',435,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1458,NULL,NULL,'E49',436,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1459,NULL,NULL,'E50',437,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1460,NULL,NULL,'E51',438,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1461,NULL,NULL,'E52',439,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1462,NULL,NULL,'E53',440,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1463,NULL,NULL,'E54',441,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1464,NULL,NULL,'E55',442,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1465,NULL,NULL,'E56',443,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1466,NULL,NULL,'E57',444,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1467,NULL,NULL,'E58',445,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1468,NULL,NULL,'E59',446,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1469,NULL,NULL,'E60',447,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1470,NULL,NULL,'E61',448,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1471,NULL,NULL,'E62',449,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1472,NULL,NULL,'E63',450,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1473,NULL,NULL,'E64',451,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1474,NULL,NULL,'E65',452,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1475,NULL,NULL,'E66',453,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1476,NULL,NULL,'E67',454,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1477,NULL,NULL,'E68',455,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1478,NULL,NULL,'E69',456,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1479,NULL,NULL,'E70',457,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1480,NULL,NULL,'E71',458,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1481,NULL,NULL,'E72',459,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1482,NULL,NULL,'E73',460,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1483,NULL,NULL,'E74',461,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1484,NULL,NULL,'E75',462,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1485,NULL,NULL,'E76',463,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1486,NULL,NULL,'E77',464,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1487,NULL,NULL,'E78',465,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1488,NULL,NULL,'E79',466,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1489,NULL,NULL,'E80',467,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1490,NULL,NULL,'E81',468,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1491,NULL,NULL,'E82',469,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1492,NULL,NULL,'E83',470,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1493,NULL,NULL,'E84',471,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1494,NULL,NULL,'E85',472,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1495,NULL,NULL,'E86',473,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1496,NULL,NULL,'E87',474,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1497,NULL,NULL,'E88',475,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1498,NULL,NULL,'E89',476,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1499,NULL,NULL,'E90',477,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1500,NULL,NULL,'E91',478,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1501,NULL,NULL,'E92',479,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1502,NULL,NULL,'E93',480,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1503,NULL,NULL,'E94',481,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1504,NULL,NULL,'E95',482,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1505,NULL,NULL,'E96',483,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1506,NULL,NULL,'E97',484,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1507,NULL,NULL,'E98',485,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1508,NULL,NULL,'E99',486,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1509,NULL,NULL,'E100',487,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1510,NULL,NULL,'E101',488,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1511,NULL,NULL,'E102',489,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1512,NULL,NULL,'E103',490,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1513,NULL,NULL,'E104',491,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1514,NULL,NULL,'E105',492,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1515,NULL,NULL,'E106',493,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1516,NULL,NULL,'E107',494,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1517,NULL,NULL,'E108',495,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1518,NULL,NULL,'E109',496,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1519,NULL,NULL,'E110',497,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1520,NULL,NULL,'E111',498,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1521,NULL,NULL,'E112',499,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1522,NULL,NULL,'E113',500,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1523,NULL,NULL,'E114',501,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1524,NULL,NULL,'E115',502,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1525,NULL,NULL,'E116',503,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1526,NULL,NULL,'E117',504,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1527,NULL,NULL,'E118',505,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1528,NULL,NULL,'E119',506,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1529,NULL,NULL,'E120',507,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1530,NULL,NULL,'E121',508,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1531,NULL,NULL,'E122',509,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1532,NULL,NULL,'E123',510,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1533,NULL,NULL,'E124',511,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1534,NULL,NULL,'E125',512,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1535,NULL,NULL,'E126',513,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1536,NULL,NULL,'E127',514,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1537,NULL,NULL,'E128',515,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1538,NULL,NULL,'E129',516,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1539,NULL,NULL,'E1',256,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1540,NULL,NULL,'E2',257,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1541,NULL,NULL,'E3',258,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1542,NULL,NULL,'E4',259,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1543,NULL,NULL,'E5',260,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1544,NULL,NULL,'E6',261,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1545,NULL,NULL,'E7',262,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1546,NULL,NULL,'E8',263,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1547,NULL,NULL,'E9',264,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1548,NULL,NULL,'E10',265,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1549,NULL,NULL,'E11',266,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1550,NULL,NULL,'E12',267,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1551,NULL,NULL,'E13',268,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1552,NULL,NULL,'E14',269,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1553,NULL,NULL,'E15',270,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1554,NULL,NULL,'E16',271,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1555,NULL,NULL,'E17',272,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1556,NULL,NULL,'E18',273,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1557,NULL,NULL,'E19',274,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1558,NULL,NULL,'E20',275,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1559,NULL,NULL,'E21',276,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1560,NULL,NULL,'E22',277,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1561,NULL,NULL,'E23',278,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1562,NULL,NULL,'E24',279,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1563,NULL,NULL,'E25',280,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1564,NULL,NULL,'E26',281,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1565,NULL,NULL,'E27',282,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1566,NULL,NULL,'E28',283,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1567,NULL,NULL,'E29',284,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1568,NULL,NULL,'E30',285,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1569,NULL,NULL,'E31',286,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1570,NULL,NULL,'E32',287,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1571,NULL,NULL,'E33',288,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1572,NULL,NULL,'E34',289,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1573,NULL,NULL,'E35',290,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1574,NULL,NULL,'E36',291,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1575,NULL,NULL,'E37',292,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1576,NULL,NULL,'E38',293,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1577,NULL,NULL,'E39',294,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1578,NULL,NULL,'E40',295,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1579,NULL,NULL,'E41',296,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1580,NULL,NULL,'E42',297,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1581,NULL,NULL,'E43',298,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1582,NULL,NULL,'E44',299,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1583,NULL,NULL,'E45',300,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1584,NULL,NULL,'E46',301,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1585,NULL,NULL,'E47',302,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1586,NULL,NULL,'E48',303,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1587,NULL,NULL,'E49',304,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1588,NULL,NULL,'E50',305,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1589,NULL,NULL,'E51',306,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1590,NULL,NULL,'E52',307,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1591,NULL,NULL,'E53',308,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1592,NULL,NULL,'E54',309,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1593,NULL,NULL,'E55',310,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1594,NULL,NULL,'E56',311,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1595,NULL,NULL,'E57',312,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1596,NULL,NULL,'E58',313,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1597,NULL,NULL,'E59',314,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1598,NULL,NULL,'E60',315,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1599,NULL,NULL,'E61',316,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1600,NULL,NULL,'E62',317,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1601,NULL,NULL,'E63',318,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1602,NULL,NULL,'E64',319,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1603,NULL,NULL,'E65',320,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1604,NULL,NULL,'E66',321,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1605,NULL,NULL,'E67',322,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1606,NULL,NULL,'E68',323,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1607,NULL,NULL,'E69',324,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1608,NULL,NULL,'E70',325,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1609,NULL,NULL,'E71',326,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1610,NULL,NULL,'E72',327,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1611,NULL,NULL,'E73',328,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1612,NULL,NULL,'E74',329,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1613,NULL,NULL,'E75',330,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1614,NULL,NULL,'E76',331,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1615,NULL,NULL,'E77',332,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1616,NULL,NULL,'E78',333,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1617,NULL,NULL,'E79',334,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1618,NULL,NULL,'E80',335,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1619,NULL,NULL,'E81',336,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1620,NULL,NULL,'E82',337,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1621,NULL,NULL,'E83',338,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1622,NULL,NULL,'E84',339,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1623,NULL,NULL,'E85',340,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1624,NULL,NULL,'E86',341,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1625,NULL,NULL,'E87',342,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1626,NULL,NULL,'E88',343,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1627,NULL,NULL,'E89',344,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1628,NULL,NULL,'E90',345,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1629,NULL,NULL,'E91',346,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1630,NULL,NULL,'E92',347,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1631,NULL,NULL,'E93',348,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1632,NULL,NULL,'E94',349,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1633,NULL,NULL,'E95',350,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1634,NULL,NULL,'E96',351,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1635,NULL,NULL,'E97',352,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1636,NULL,NULL,'E98',353,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1637,NULL,NULL,'E99',354,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1638,NULL,NULL,'E100',355,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1639,NULL,NULL,'E101',356,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1640,NULL,NULL,'E102',357,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1641,NULL,NULL,'E103',358,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1642,NULL,NULL,'E104',359,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1643,NULL,NULL,'E105',360,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1644,NULL,NULL,'E106',361,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1645,NULL,NULL,'E107',362,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1646,NULL,NULL,'E108',363,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1647,NULL,NULL,'E109',364,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1648,NULL,NULL,'E110',365,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1649,NULL,NULL,'E111',366,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1650,NULL,NULL,'E112',367,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1651,NULL,NULL,'E113',368,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1652,NULL,NULL,'E114',369,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1653,NULL,NULL,'E115',370,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1654,NULL,NULL,'E116',371,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1655,NULL,NULL,'E117',372,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1656,NULL,NULL,'E118',373,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1657,NULL,NULL,'E119',374,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1658,NULL,NULL,'E120',375,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1659,NULL,NULL,'E121',376,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1660,NULL,NULL,'E122',377,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1661,NULL,NULL,'E123',378,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1662,NULL,NULL,'E124',379,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1663,NULL,NULL,'E125',380,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1664,NULL,NULL,'E126',381,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1665,NULL,NULL,'E127',382,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1666,NULL,NULL,'E128',383,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1667,NULL,NULL,'E129',384,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1668,NULL,NULL,'E1',388,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1669,NULL,NULL,'E2',389,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1670,NULL,NULL,'E3',390,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1671,NULL,NULL,'E4',391,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1672,NULL,NULL,'E5',392,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1673,NULL,NULL,'E6',393,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1674,NULL,NULL,'E7',394,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1675,NULL,NULL,'E8',395,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1676,NULL,NULL,'E9',396,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1677,NULL,NULL,'E10',397,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1678,NULL,NULL,'E11',398,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1679,NULL,NULL,'E12',399,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1680,NULL,NULL,'E13',400,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1681,NULL,NULL,'E14',401,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1682,NULL,NULL,'E15',402,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1683,NULL,NULL,'E16',403,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1684,NULL,NULL,'E17',404,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1685,NULL,NULL,'E18',405,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1686,NULL,NULL,'E19',406,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1687,NULL,NULL,'E20',407,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1688,NULL,NULL,'E21',408,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1689,NULL,NULL,'E22',409,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1690,NULL,NULL,'E23',410,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1691,NULL,NULL,'E24',411,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1692,NULL,NULL,'E25',412,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1693,NULL,NULL,'E26',413,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1694,NULL,NULL,'E27',414,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1695,NULL,NULL,'E28',415,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1696,NULL,NULL,'E29',416,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1697,NULL,NULL,'E30',417,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1698,NULL,NULL,'E31',418,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1699,NULL,NULL,'E32',419,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1700,NULL,NULL,'E33',420,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1701,NULL,NULL,'E34',421,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1702,NULL,NULL,'E35',422,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1703,NULL,NULL,'E36',423,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1704,NULL,NULL,'E37',424,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1705,NULL,NULL,'E38',425,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1706,NULL,NULL,'E39',426,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1707,NULL,NULL,'E40',427,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1708,NULL,NULL,'E41',428,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1709,NULL,NULL,'E42',429,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1710,NULL,NULL,'E43',430,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1711,NULL,NULL,'E44',431,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1712,NULL,NULL,'E45',432,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1713,NULL,NULL,'E46',433,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1714,NULL,NULL,'E47',434,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1715,NULL,NULL,'E48',435,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1716,NULL,NULL,'E49',436,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1717,NULL,NULL,'E50',437,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1718,NULL,NULL,'E51',438,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1719,NULL,NULL,'E52',439,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1720,NULL,NULL,'E53',440,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1721,NULL,NULL,'E54',441,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1722,NULL,NULL,'E55',442,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1723,NULL,NULL,'E56',443,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1724,NULL,NULL,'E57',444,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1725,NULL,NULL,'E58',445,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1726,NULL,NULL,'E59',446,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1727,NULL,NULL,'E60',447,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1728,NULL,NULL,'E61',448,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1729,NULL,NULL,'E62',449,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1730,NULL,NULL,'E63',450,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1731,NULL,NULL,'E64',451,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1732,NULL,NULL,'E65',452,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1733,NULL,NULL,'E66',453,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1734,NULL,NULL,'E67',454,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1735,NULL,NULL,'E68',455,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1736,NULL,NULL,'E69',456,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1737,NULL,NULL,'E70',457,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1738,NULL,NULL,'E71',458,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1739,NULL,NULL,'E72',459,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1740,NULL,NULL,'E73',460,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1741,NULL,NULL,'E74',461,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1742,NULL,NULL,'E75',462,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1743,NULL,NULL,'E76',463,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1744,NULL,NULL,'E77',464,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1745,NULL,NULL,'E78',465,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1746,NULL,NULL,'E79',466,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1747,NULL,NULL,'E80',467,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1748,NULL,NULL,'E81',468,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1749,NULL,NULL,'E82',469,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1750,NULL,NULL,'E83',470,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1751,NULL,NULL,'E84',471,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1752,NULL,NULL,'E85',472,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1753,NULL,NULL,'E86',473,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1754,NULL,NULL,'E87',474,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1755,NULL,NULL,'E88',475,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1756,NULL,NULL,'E89',476,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1757,NULL,NULL,'E90',477,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1758,NULL,NULL,'E91',478,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1759,NULL,NULL,'E92',479,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1760,NULL,NULL,'E93',480,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1761,NULL,NULL,'E94',481,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1762,NULL,NULL,'E95',482,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1763,NULL,NULL,'E96',483,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1764,NULL,NULL,'E97',484,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1765,NULL,NULL,'E98',485,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1766,NULL,NULL,'E99',486,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1767,NULL,NULL,'E100',487,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1768,NULL,NULL,'E101',488,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1769,NULL,NULL,'E102',489,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1770,NULL,NULL,'E103',490,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1771,NULL,NULL,'E104',491,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1772,NULL,NULL,'E105',492,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1773,NULL,NULL,'E106',493,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1774,NULL,NULL,'E107',494,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1775,NULL,NULL,'E108',495,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1776,NULL,NULL,'E109',496,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1777,NULL,NULL,'E110',497,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1778,NULL,NULL,'E111',498,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1779,NULL,NULL,'E112',499,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1780,NULL,NULL,'E113',500,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1781,NULL,NULL,'E114',501,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1782,NULL,NULL,'E115',502,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1783,NULL,NULL,'E116',503,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1784,NULL,NULL,'E117',504,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1785,NULL,NULL,'E118',505,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1786,NULL,NULL,'E119',506,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1787,NULL,NULL,'E120',507,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1788,NULL,NULL,'E121',508,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1789,NULL,NULL,'E122',509,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1790,NULL,NULL,'E123',510,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1791,NULL,NULL,'E124',511,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1792,NULL,NULL,'E125',512,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1793,NULL,NULL,'E126',513,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1794,NULL,NULL,'E127',514,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1795,NULL,NULL,'E128',515,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1796,NULL,NULL,'E129',516,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1797,NULL,NULL,'E1',256,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1798,NULL,NULL,'E2',257,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1799,NULL,NULL,'E3',258,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1800,NULL,NULL,'E4',259,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1801,NULL,NULL,'E5',260,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1802,NULL,NULL,'E6',261,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1803,NULL,NULL,'E7',262,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1804,NULL,NULL,'E8',263,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1805,NULL,NULL,'E9',264,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1806,NULL,NULL,'E10',265,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1807,NULL,NULL,'E11',266,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1808,NULL,NULL,'E12',267,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1809,NULL,NULL,'E13',268,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1810,NULL,NULL,'E14',269,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1811,NULL,NULL,'E15',270,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1812,NULL,NULL,'E16',271,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1813,NULL,NULL,'E17',272,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1814,NULL,NULL,'E18',273,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1815,NULL,NULL,'E19',274,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1816,NULL,NULL,'E20',275,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1817,NULL,NULL,'E21',276,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1818,NULL,NULL,'E22',277,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1819,NULL,NULL,'E23',278,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1820,NULL,NULL,'E24',279,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1821,NULL,NULL,'E25',280,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1822,NULL,NULL,'E26',281,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1823,NULL,NULL,'E27',282,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1824,NULL,NULL,'E28',283,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1825,NULL,NULL,'E29',284,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1826,NULL,NULL,'E30',285,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1827,NULL,NULL,'E31',286,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1828,NULL,NULL,'E32',287,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1829,NULL,NULL,'E33',288,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1830,NULL,NULL,'E34',289,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1831,NULL,NULL,'E35',290,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1832,NULL,NULL,'E36',291,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1833,NULL,NULL,'E37',292,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1834,NULL,NULL,'E38',293,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1835,NULL,NULL,'E39',294,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1836,NULL,NULL,'E40',295,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1837,NULL,NULL,'E41',296,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1838,NULL,NULL,'E42',297,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1839,NULL,NULL,'E43',298,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1840,NULL,NULL,'E44',299,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1841,NULL,NULL,'E45',300,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1842,NULL,NULL,'E46',301,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1843,NULL,NULL,'E47',302,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1844,NULL,NULL,'E48',303,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1845,NULL,NULL,'E49',304,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1846,NULL,NULL,'E50',305,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1847,NULL,NULL,'E51',306,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1848,NULL,NULL,'E52',307,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1849,NULL,NULL,'E53',308,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1850,NULL,NULL,'E54',309,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1851,NULL,NULL,'E55',310,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1852,NULL,NULL,'E56',311,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1853,NULL,NULL,'E57',312,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1854,NULL,NULL,'E58',313,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1855,NULL,NULL,'E59',314,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1856,NULL,NULL,'E60',315,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1857,NULL,NULL,'E61',316,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1858,NULL,NULL,'E62',317,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1859,NULL,NULL,'E63',318,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1860,NULL,NULL,'E64',319,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1861,NULL,NULL,'E65',320,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1862,NULL,NULL,'E66',321,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1863,NULL,NULL,'E67',322,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1864,NULL,NULL,'E68',323,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1865,NULL,NULL,'E69',324,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1866,NULL,NULL,'E70',325,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1867,NULL,NULL,'E71',326,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1868,NULL,NULL,'E72',327,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1869,NULL,NULL,'E73',328,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1870,NULL,NULL,'E74',329,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1871,NULL,NULL,'E75',330,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1872,NULL,NULL,'E76',331,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1873,NULL,NULL,'E77',332,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1874,NULL,NULL,'E78',333,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1875,NULL,NULL,'E79',334,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1876,NULL,NULL,'E80',335,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1877,NULL,NULL,'E81',336,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1878,NULL,NULL,'E82',337,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1879,NULL,NULL,'E83',338,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1880,NULL,NULL,'E84',339,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1881,NULL,NULL,'E85',340,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1882,NULL,NULL,'E86',341,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1883,NULL,NULL,'E87',342,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1884,NULL,NULL,'E88',343,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1885,NULL,NULL,'E89',344,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1886,NULL,NULL,'E90',345,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1887,NULL,NULL,'E91',346,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1888,NULL,NULL,'E92',347,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1889,NULL,NULL,'E93',348,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1890,NULL,NULL,'E94',349,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1891,NULL,NULL,'E95',350,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1892,NULL,NULL,'E96',351,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1893,NULL,NULL,'E97',352,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1894,NULL,NULL,'E98',353,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1895,NULL,NULL,'E99',354,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1896,NULL,NULL,'E100',355,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1897,NULL,NULL,'E101',356,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1898,NULL,NULL,'E102',357,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1899,NULL,NULL,'E103',358,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1900,NULL,NULL,'E104',359,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1901,NULL,NULL,'E105',360,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1902,NULL,NULL,'E106',361,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1903,NULL,NULL,'E107',362,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1904,NULL,NULL,'E108',363,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1905,NULL,NULL,'E109',364,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1906,NULL,NULL,'E110',365,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1907,NULL,NULL,'E111',366,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1908,NULL,NULL,'E112',367,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1909,NULL,NULL,'E113',368,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1910,NULL,NULL,'E114',369,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1911,NULL,NULL,'E115',370,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1912,NULL,NULL,'E116',371,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1913,NULL,NULL,'E117',372,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1914,NULL,NULL,'E118',373,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1915,NULL,NULL,'E119',374,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1916,NULL,NULL,'E120',375,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1917,NULL,NULL,'E121',376,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1918,NULL,NULL,'E122',377,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1919,NULL,NULL,'E123',378,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1920,NULL,NULL,'E124',379,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1921,NULL,NULL,'E125',380,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1922,NULL,NULL,'E126',381,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1923,NULL,NULL,'E127',382,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1924,NULL,NULL,'E128',383,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1925,NULL,NULL,'E129',384,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1926,NULL,NULL,'E1',388,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1927,NULL,NULL,'E2',389,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1928,NULL,NULL,'E3',390,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1929,NULL,NULL,'E4',391,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1930,NULL,NULL,'E5',392,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1931,NULL,NULL,'E6',393,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1932,NULL,NULL,'E7',394,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1933,NULL,NULL,'E8',395,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1934,NULL,NULL,'E9',396,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1935,NULL,NULL,'E10',397,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1936,NULL,NULL,'E11',398,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1937,NULL,NULL,'E12',399,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1938,NULL,NULL,'E13',400,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1939,NULL,NULL,'E14',401,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1940,NULL,NULL,'E15',402,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1941,NULL,NULL,'E16',403,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1942,NULL,NULL,'E17',404,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1943,NULL,NULL,'E18',405,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1944,NULL,NULL,'E19',406,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1945,NULL,NULL,'E20',407,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1946,NULL,NULL,'E21',408,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1947,NULL,NULL,'E22',409,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1948,NULL,NULL,'E23',410,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1949,NULL,NULL,'E24',411,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1950,NULL,NULL,'E25',412,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1951,NULL,NULL,'E26',413,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1952,NULL,NULL,'E27',414,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1953,NULL,NULL,'E28',415,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1954,NULL,NULL,'E29',416,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1955,NULL,NULL,'E30',417,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1956,NULL,NULL,'E31',418,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1957,NULL,NULL,'E32',419,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1958,NULL,NULL,'E33',420,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1959,NULL,NULL,'E34',421,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1960,NULL,NULL,'E35',422,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1961,NULL,NULL,'E36',423,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1962,NULL,NULL,'E37',424,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1963,NULL,NULL,'E38',425,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1964,NULL,NULL,'E39',426,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1965,NULL,NULL,'E40',427,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1966,NULL,NULL,'E41',428,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1967,NULL,NULL,'E42',429,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1968,NULL,NULL,'E43',430,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1969,NULL,NULL,'E44',431,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1970,NULL,NULL,'E45',432,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1971,NULL,NULL,'E46',433,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1972,NULL,NULL,'E47',434,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1973,NULL,NULL,'E48',435,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1974,NULL,NULL,'E49',436,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1975,NULL,NULL,'E50',437,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1976,NULL,NULL,'E51',438,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1977,NULL,NULL,'E52',439,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1978,NULL,NULL,'E53',440,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1979,NULL,NULL,'E54',441,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1980,NULL,NULL,'E55',442,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1981,NULL,NULL,'E56',443,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1982,NULL,NULL,'E57',444,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1983,NULL,NULL,'E58',445,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1984,NULL,NULL,'E59',446,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1985,NULL,NULL,'E60',447,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1986,NULL,NULL,'E61',448,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1987,NULL,NULL,'E62',449,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1988,NULL,NULL,'E63',450,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1989,NULL,NULL,'E64',451,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1990,NULL,NULL,'E65',452,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1991,NULL,NULL,'E66',453,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1992,NULL,NULL,'E67',454,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1993,NULL,NULL,'E68',455,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1994,NULL,NULL,'E69',456,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1995,NULL,NULL,'E70',457,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1996,NULL,NULL,'E71',458,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1997,NULL,NULL,'E72',459,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1998,NULL,NULL,'E73',460,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (1999,NULL,NULL,'E74',461,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2000,NULL,NULL,'E75',462,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2001,NULL,NULL,'E76',463,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2002,NULL,NULL,'E77',464,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2003,NULL,NULL,'E78',465,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2004,NULL,NULL,'E79',466,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2005,NULL,NULL,'E80',467,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2006,NULL,NULL,'E81',468,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2007,NULL,NULL,'E82',469,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2008,NULL,NULL,'E83',470,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2009,NULL,NULL,'E84',471,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2010,NULL,NULL,'E85',472,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2011,NULL,NULL,'E86',473,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2012,NULL,NULL,'E87',474,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2013,NULL,NULL,'E88',475,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2014,NULL,NULL,'E89',476,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2015,NULL,NULL,'E90',477,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2016,NULL,NULL,'E91',478,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2017,NULL,NULL,'E92',479,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2018,NULL,NULL,'E93',480,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2019,NULL,NULL,'E94',481,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2020,NULL,NULL,'E95',482,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2021,NULL,NULL,'E96',483,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2022,NULL,NULL,'E97',484,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2023,NULL,NULL,'E98',485,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2024,NULL,NULL,'E99',486,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2025,NULL,NULL,'E100',487,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2026,NULL,NULL,'E101',488,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2027,NULL,NULL,'E102',489,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2028,NULL,NULL,'E103',490,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2029,NULL,NULL,'E104',491,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2030,NULL,NULL,'E105',492,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2031,NULL,NULL,'E106',493,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2032,NULL,NULL,'E107',494,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2033,NULL,NULL,'E108',495,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2034,NULL,NULL,'E109',496,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2035,NULL,NULL,'E110',497,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2036,NULL,NULL,'E111',498,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2037,NULL,NULL,'E112',499,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2038,NULL,NULL,'E113',500,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2039,NULL,NULL,'E114',501,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2040,NULL,NULL,'E115',502,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2041,NULL,NULL,'E116',503,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2042,NULL,NULL,'E117',504,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2043,NULL,NULL,'E118',505,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2044,NULL,NULL,'E119',506,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2045,NULL,NULL,'E120',507,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2046,NULL,NULL,'E121',508,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2047,NULL,NULL,'E122',509,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2048,NULL,NULL,'E123',510,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2049,NULL,NULL,'E124',511,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2050,NULL,NULL,'E125',512,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2051,NULL,NULL,'E126',513,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2052,NULL,NULL,'E127',514,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2053,NULL,NULL,'E128',515,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2054,NULL,NULL,'E129',516,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2055,NULL,NULL,'E1',256,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2056,NULL,NULL,'E2',257,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2057,NULL,NULL,'E3',258,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2058,NULL,NULL,'E4',259,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2059,NULL,NULL,'E5',260,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2060,NULL,NULL,'E6',261,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2061,NULL,NULL,'E7',262,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2062,NULL,NULL,'E8',263,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2063,NULL,NULL,'E9',264,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2064,NULL,NULL,'E10',265,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2065,NULL,NULL,'E11',266,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2066,NULL,NULL,'E12',267,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2067,NULL,NULL,'E13',268,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2068,NULL,NULL,'E14',269,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2069,NULL,NULL,'E15',270,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2070,NULL,NULL,'E16',271,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2071,NULL,NULL,'E17',272,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2072,NULL,NULL,'E18',273,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2073,NULL,NULL,'E19',274,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2074,NULL,NULL,'E20',275,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2075,NULL,NULL,'E21',276,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2076,NULL,NULL,'E22',277,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2077,NULL,NULL,'E23',278,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2078,NULL,NULL,'E24',279,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2079,NULL,NULL,'E25',280,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2080,NULL,NULL,'E26',281,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2081,NULL,NULL,'E27',282,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2082,NULL,NULL,'E28',283,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2083,NULL,NULL,'E29',284,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2084,NULL,NULL,'E30',285,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2085,NULL,NULL,'E31',286,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2086,NULL,NULL,'E32',287,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2087,NULL,NULL,'E33',288,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2088,NULL,NULL,'E34',289,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2089,NULL,NULL,'E35',290,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2090,NULL,NULL,'E36',291,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2091,NULL,NULL,'E37',292,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2092,NULL,NULL,'E38',293,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2093,NULL,NULL,'E39',294,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2094,NULL,NULL,'E40',295,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2095,NULL,NULL,'E41',296,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2096,NULL,NULL,'E42',297,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2097,NULL,NULL,'E43',298,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2098,NULL,NULL,'E44',299,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2099,NULL,NULL,'E45',300,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2100,NULL,NULL,'E46',301,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2101,NULL,NULL,'E47',302,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2102,NULL,NULL,'E48',303,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2103,NULL,NULL,'E49',304,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2104,NULL,NULL,'E50',305,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2105,NULL,NULL,'E51',306,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2106,NULL,NULL,'E52',307,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2107,NULL,NULL,'E53',308,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2108,NULL,NULL,'E54',309,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2109,NULL,NULL,'E55',310,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2110,NULL,NULL,'E56',311,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2111,NULL,NULL,'E57',312,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2112,NULL,NULL,'E58',313,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2113,NULL,NULL,'E59',314,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2114,NULL,NULL,'E60',315,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2115,NULL,NULL,'E61',316,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2116,NULL,NULL,'E62',317,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2117,NULL,NULL,'E63',318,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2118,NULL,NULL,'E64',319,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2119,NULL,NULL,'E65',320,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2120,NULL,NULL,'E66',321,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2121,NULL,NULL,'E67',322,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2122,NULL,NULL,'E68',323,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2123,NULL,NULL,'E69',324,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2124,NULL,NULL,'E70',325,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2125,NULL,NULL,'E71',326,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2126,NULL,NULL,'E72',327,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2127,NULL,NULL,'E73',328,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2128,NULL,NULL,'E74',329,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2129,NULL,NULL,'E75',330,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2130,NULL,NULL,'E76',331,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2131,NULL,NULL,'E77',332,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2132,NULL,NULL,'E78',333,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2133,NULL,NULL,'E79',334,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2134,NULL,NULL,'E80',335,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2135,NULL,NULL,'E81',336,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2136,NULL,NULL,'E82',337,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2137,NULL,NULL,'E83',338,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2138,NULL,NULL,'E84',339,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2139,NULL,NULL,'E85',340,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2140,NULL,NULL,'E86',341,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2141,NULL,NULL,'E87',342,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2142,NULL,NULL,'E88',343,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2143,NULL,NULL,'E89',344,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2144,NULL,NULL,'E90',345,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2145,NULL,NULL,'E91',346,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2146,NULL,NULL,'E92',347,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2147,NULL,NULL,'E93',348,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2148,NULL,NULL,'E94',349,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2149,NULL,NULL,'E95',350,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2150,NULL,NULL,'E96',351,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2151,NULL,NULL,'E97',352,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2152,NULL,NULL,'E98',353,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2153,NULL,NULL,'E99',354,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2154,NULL,NULL,'E100',355,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2155,NULL,NULL,'E101',356,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2156,NULL,NULL,'E102',357,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2157,NULL,NULL,'E103',358,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2158,NULL,NULL,'E104',359,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2159,NULL,NULL,'E105',360,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2160,NULL,NULL,'E106',361,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2161,NULL,NULL,'E107',362,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2162,NULL,NULL,'E108',363,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2163,NULL,NULL,'E109',364,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2164,NULL,NULL,'E110',365,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2165,NULL,NULL,'E111',366,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2166,NULL,NULL,'E112',367,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2167,NULL,NULL,'E113',368,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2168,NULL,NULL,'E114',369,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2169,NULL,NULL,'E115',370,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2170,NULL,NULL,'E116',371,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2171,NULL,NULL,'E117',372,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2172,NULL,NULL,'E118',373,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2173,NULL,NULL,'E119',374,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2174,NULL,NULL,'E120',375,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2175,NULL,NULL,'E121',376,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2176,NULL,NULL,'E122',377,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2177,NULL,NULL,'E123',378,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2178,NULL,NULL,'E124',379,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2179,NULL,NULL,'E125',380,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2180,NULL,NULL,'E126',381,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2181,NULL,NULL,'E127',382,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2182,NULL,NULL,'E128',383,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2183,NULL,NULL,'E129',384,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CapTrak_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2184,NULL,NULL,'E1',388,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2185,NULL,NULL,'E2',389,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2186,NULL,NULL,'E3',390,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2187,NULL,NULL,'E4',391,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2188,NULL,NULL,'E5',392,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2189,NULL,NULL,'E6',393,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2190,NULL,NULL,'E7',394,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2191,NULL,NULL,'E8',395,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2192,NULL,NULL,'E9',396,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2193,NULL,NULL,'E10',397,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2194,NULL,NULL,'E11',398,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2195,NULL,NULL,'E12',399,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2196,NULL,NULL,'E13',400,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2197,NULL,NULL,'E14',401,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2198,NULL,NULL,'E15',402,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2199,NULL,NULL,'E16',403,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2200,NULL,NULL,'E17',404,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2201,NULL,NULL,'E18',405,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2202,NULL,NULL,'E19',406,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2203,NULL,NULL,'E20',407,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2204,NULL,NULL,'E21',408,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2205,NULL,NULL,'E22',409,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2206,NULL,NULL,'E23',410,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2207,NULL,NULL,'E24',411,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2208,NULL,NULL,'E25',412,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2209,NULL,NULL,'E26',413,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2210,NULL,NULL,'E27',414,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2211,NULL,NULL,'E28',415,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2212,NULL,NULL,'E29',416,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2213,NULL,NULL,'E30',417,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2214,NULL,NULL,'E31',418,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2215,NULL,NULL,'E32',419,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2216,NULL,NULL,'E33',420,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2217,NULL,NULL,'E34',421,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2218,NULL,NULL,'E35',422,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2219,NULL,NULL,'E36',423,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2220,NULL,NULL,'E37',424,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2221,NULL,NULL,'E38',425,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2222,NULL,NULL,'E39',426,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2223,NULL,NULL,'E40',427,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2224,NULL,NULL,'E41',428,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2225,NULL,NULL,'E42',429,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2226,NULL,NULL,'E43',430,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2227,NULL,NULL,'E44',431,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2228,NULL,NULL,'E45',432,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2229,NULL,NULL,'E46',433,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2230,NULL,NULL,'E47',434,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2231,NULL,NULL,'E48',435,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2232,NULL,NULL,'E49',436,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2233,NULL,NULL,'E50',437,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2234,NULL,NULL,'E51',438,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2235,NULL,NULL,'E52',439,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2236,NULL,NULL,'E53',440,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2237,NULL,NULL,'E54',441,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2238,NULL,NULL,'E55',442,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2239,NULL,NULL,'E56',443,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2240,NULL,NULL,'E57',444,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2241,NULL,NULL,'E58',445,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2242,NULL,NULL,'E59',446,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2243,NULL,NULL,'E60',447,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2244,NULL,NULL,'E61',448,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2245,NULL,NULL,'E62',449,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2246,NULL,NULL,'E63',450,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2247,NULL,NULL,'E64',451,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2248,NULL,NULL,'E65',452,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2249,NULL,NULL,'E66',453,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2250,NULL,NULL,'E67',454,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2251,NULL,NULL,'E68',455,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2252,NULL,NULL,'E69',456,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2253,NULL,NULL,'E70',457,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2254,NULL,NULL,'E71',458,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2255,NULL,NULL,'E72',459,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2256,NULL,NULL,'E73',460,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2257,NULL,NULL,'E74',461,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2258,NULL,NULL,'E75',462,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2259,NULL,NULL,'E76',463,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2260,NULL,NULL,'E77',464,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2261,NULL,NULL,'E78',465,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2262,NULL,NULL,'E79',466,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2263,NULL,NULL,'E80',467,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2264,NULL,NULL,'E81',468,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2265,NULL,NULL,'E82',469,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2266,NULL,NULL,'E83',470,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2267,NULL,NULL,'E84',471,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2268,NULL,NULL,'E85',472,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2269,NULL,NULL,'E86',473,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2270,NULL,NULL,'E87',474,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2271,NULL,NULL,'E88',475,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2272,NULL,NULL,'E89',476,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2273,NULL,NULL,'E90',477,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2274,NULL,NULL,'E91',478,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2275,NULL,NULL,'E92',479,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2276,NULL,NULL,'E93',480,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2277,NULL,NULL,'E94',481,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2278,NULL,NULL,'E95',482,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2279,NULL,NULL,'E96',483,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2280,NULL,NULL,'E97',484,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2281,NULL,NULL,'E98',485,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2282,NULL,NULL,'E99',486,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2283,NULL,NULL,'E100',487,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2284,NULL,NULL,'E101',488,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2285,NULL,NULL,'E102',489,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2286,NULL,NULL,'E103',490,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2287,NULL,NULL,'E104',491,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2288,NULL,NULL,'E105',492,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2289,NULL,NULL,'E106',493,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2290,NULL,NULL,'E107',494,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2291,NULL,NULL,'E108',495,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2292,NULL,NULL,'E109',496,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2293,NULL,NULL,'E110',497,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2294,NULL,NULL,'E111',498,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2295,NULL,NULL,'E112',499,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2296,NULL,NULL,'E113',500,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2297,NULL,NULL,'E114',501,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2298,NULL,NULL,'E115',502,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2299,NULL,NULL,'E116',503,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2300,NULL,NULL,'E117',504,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2301,NULL,NULL,'E118',505,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2302,NULL,NULL,'E119',506,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2303,NULL,NULL,'E120',507,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2304,NULL,NULL,'E121',508,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2305,NULL,NULL,'E122',509,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2306,NULL,NULL,'E123',510,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2307,NULL,NULL,'E124',511,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2308,NULL,NULL,'E125',512,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2309,NULL,NULL,'E126',513,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2310,NULL,NULL,'E127',514,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2311,NULL,NULL,'E128',515,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); -INSERT INTO `physiological_electrode` (`PhysiologicalElectrodeID`, `PhysiologicalElectrodeTypeID`, `PhysiologicalElectrodeMaterialID`, `Name`, `Point3DID`, `Impedance`, `FilePath`) VALUES (2312,NULL,NULL,'E129',516,NULL,'bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_acq-eeg_space-CTF_electrodes.tsv'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_event_archive.sql b/raisinbread/RB_files/RB_physiological_event_archive.sql index fb0aa36ec7f..e84c806078a 100644 --- a/raisinbread/RB_files/RB_physiological_event_archive.sql +++ b/raisinbread/RB_files/RB_physiological_event_archive.sql @@ -1,9 +1,5 @@ SET FOREIGN_KEY_CHECKS=0; TRUNCATE TABLE `physiological_event_archive`; LOCK TABLES `physiological_event_archive` WRITE; -INSERT INTO `physiological_event_archive` (`EventArchiveID`, `PhysiologicalFileID`, `Blake2bHash`, `FilePath`) VALUES (1,11,'ee1bf1c5b6d6ee84758bf76d5c069db52816d91e9fe6c553986e6ec5da992ca94b75874acfcaa1757dd773727d5768aa2461051ea001310134646247eaa44a78','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_events.tgz'); -INSERT INTO `physiological_event_archive` (`EventArchiveID`, `PhysiologicalFileID`, `Blake2bHash`, `FilePath`) VALUES (2,12,'77291d2e2bb7be1eff546b1590f5fa131892bea27afc3e90de0d38d36c0128481c3e782fc42b55b78961b8b1f432ee21d958d5e35301334508fa3fae0ebd8302','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_events.tgz'); -INSERT INTO `physiological_event_archive` (`EventArchiveID`, `PhysiologicalFileID`, `Blake2bHash`, `FilePath`) VALUES (3,13,'5ebec2e0155fe8477fe44e89483876e21eb9928e9028cf340e02de3a72f3520ca059ae2a32ddf3d2aafdb6009229af8e3db551eef573889dc84cbf171b2b6505','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_events.tgz'); -INSERT INTO `physiological_event_archive` (`EventArchiveID`, `PhysiologicalFileID`, `Blake2bHash`, `FilePath`) VALUES (4,14,'b8fa64cf48949fa82d22d95d602e97df4914cde4733f8148dce49a293cb21d6228193dcefafbc9b429fcfff8490ffd4f59730e64257f2702f9ad8f81e64646a8','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_events.tgz'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_event_file.sql b/raisinbread/RB_files/RB_physiological_event_file.sql index 0a679b7c65b..ec8d8c294c8 100644 --- a/raisinbread/RB_files/RB_physiological_event_file.sql +++ b/raisinbread/RB_files/RB_physiological_event_file.sql @@ -11,9 +11,5 @@ INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `F INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (8,8,'tsv','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT173/ses-V1/eeg/sub-OTT173_ses-V1_task-faceO_events.tsv','2022-07-14 18:51:32','2022-07-14 18:51:32'); INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (9,9,'tsv','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT171/ses-V1/eeg/sub-OTT171_ses-V1_task-faceO_events.tsv','2022-07-14 18:51:32','2022-07-14 18:51:32'); INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (10,10,'tsv','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_events.tsv','2022-07-14 18:51:32','2022-07-14 18:51:32'); -INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (11,11,'tsv','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_events.tsv','2023-02-09 10:39:10','2023-02-09 10:39:10'); -INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (12,12,'tsv','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_events.tsv','2023-02-09 10:46:31','2023-02-09 10:46:31'); -INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (13,13,'tsv','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_events.tsv','2023-02-09 11:06:27','2023-02-09 11:06:27'); -INSERT INTO `physiological_event_file` (`EventFileID`, `PhysiologicalFileID`, `FileType`, `FilePath`, `LastUpdate`, `LastWritten`) VALUES (14,14,'tsv','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_events.tsv','2023-02-09 11:12:06','2023-02-09 11:12:06'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_file.sql b/raisinbread/RB_files/RB_physiological_file.sql index 24d51a51663..e69f379c706 100644 --- a/raisinbread/RB_files/RB_physiological_file.sql +++ b/raisinbread/RB_files/RB_physiological_file.sql @@ -11,9 +11,5 @@ INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityI INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (8,1,1,173,'2019-08-21 15:10:57','edf',NULL,'cecile','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT173/ses-V1/eeg/sub-OTT173_ses-V1_task-faceO_eeg.edf',NULL,NULL); INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (9,1,1,171,'2019-08-21 15:11:07','edf',NULL,'cecile','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT171/ses-V1/eeg/sub-OTT171_ses-V1_task-faceO_eeg.edf',NULL,NULL); INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (10,1,1,166,'2019-08-21 15:11:21','edf',NULL,'cecile','bids_imports/Face13_BIDSVersion_1.1.0/sub-OTT166/ses-V1/eeg/sub-OTT166_ses-V1_task-faceO_eeg.edf',NULL,NULL); -INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (11,1,1,2161,'2023-02-09 10:37:50','set',NULL,'lorisadmin','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_eeg.set',NULL,NULL); -INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (12,1,1,2161,'2023-02-09 10:38:14','set',NULL,'lorisadmin','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_eeg.set',NULL,NULL); -INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (13,1,1,2161,'2023-02-09 10:38:50','set',NULL,'lorisadmin','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_eeg.set',NULL,NULL); -INSERT INTO `physiological_file` (`PhysiologicalFileID`, `PhysiologicalModalityID`, `PhysiologicalOutputTypeID`, `SessionID`, `InsertTime`, `FileType`, `AcquisitionTime`, `InsertedByUser`, `FilePath`, `Index`, `ParentID`) VALUES (14,1,1,2161,'2023-02-09 10:39:01','set',NULL,'lorisadmin','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_eeg.set',NULL,NULL); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_parameter_file.sql b/raisinbread/RB_files/RB_physiological_parameter_file.sql index 37b5e6d8700..f03afcf1d3e 100644 --- a/raisinbread/RB_files/RB_physiological_parameter_file.sql +++ b/raisinbread/RB_files/RB_physiological_parameter_file.sql @@ -271,121 +271,5 @@ INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `Phy INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (268,8,1151,'2021-03-23 12:52:27','bids_imports/Face13_BIDSVersion_1.1.0_chunks/sub-OTT173_ses-V1_task-faceO_eeg.chunks'); INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (269,9,1151,'2021-03-23 12:52:49','bids_imports/Face13_BIDSVersion_1.1.0_chunks/sub-OTT171_ses-V1_task-faceO_eeg.chunks'); INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (270,10,1151,'2021-03-23 12:53:19','bids_imports/Face13_BIDSVersion_1.1.0_chunks/sub-OTT166_ses-V1_task-faceO_eeg.chunks'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (271,11,1133,'2023-02-09 10:37:51','FACE'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (272,11,1134,'2023-02-09 10:37:52','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (273,11,1132,'2023-02-09 10:37:52','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (274,11,1126,'2023-02-09 10:37:52','1000'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (275,11,1146,'2023-02-09 10:37:52','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (276,11,1129,'2023-02-09 10:37:52','178.877'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (277,11,1137,'2023-02-09 10:37:52','continuous'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (278,11,1125,'2023-02-09 10:37:53','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (279,11,1163,'2023-02-09 10:37:53','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (280,11,1145,'2023-02-09 10:37:54','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (281,11,1144,'2023-02-09 10:37:54','129'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (282,11,1138,'2023-02-09 10:37:54','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (283,11,1127,'2023-02-09 10:37:54','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (284,11,1147,'2023-02-09 10:37:54','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (285,11,1141,'2023-02-09 10:37:54','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (286,11,1140,'2023-02-09 10:37:54','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (287,11,1164,'2023-02-09 10:37:54','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_eeg.json'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (288,11,1143,'2023-02-09 10:37:54','b1a9438b606eac6c489c08accb7fa1526436f1052782a2c9e3dcccdf73891c43c98286b8be4f68f6bbfaf5a949946ce335e4eddd15b5dba7e084ad855c7674fe'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (289,11,1165,'2023-02-09 10:37:54',NULL); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (290,11,1166,'2023-02-09 10:37:54','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0//sub-PIDCC0821/sub-PIDCC0821_ses-V03_scans.tsv'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (291,11,1167,'2023-02-09 10:37:54','4b3082e57ebaf073adf4bab2353d6d8c0e42f2b9cb3914c6908ed2e131c868921bb12b7273c182a16d80ad25719f6664a85fbcef52bd7353dd2c1e2b9a683b1f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (292,11,1131,'2023-02-09 10:37:54','1a0ae7560b36ba37e52add4517b8219d6eb86864d703a774d4dfe3a474e2bbe3461760fc37c8473543f0045da41f77a590534b8b9c23e1372768ae79e3030b6b'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (293,12,1133,'2023-02-09 10:38:14','MMN'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (294,12,1134,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (295,12,1132,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (296,12,1126,'2023-02-09 10:38:14','1000'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (297,12,1146,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (298,12,1129,'2023-02-09 10:38:14','695.631'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (299,12,1137,'2023-02-09 10:38:14','continuous'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (300,12,1125,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (301,12,1163,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (302,12,1145,'2023-02-09 10:38:14','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (303,12,1144,'2023-02-09 10:38:14','129'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (304,12,1138,'2023-02-09 10:38:14','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (305,12,1127,'2023-02-09 10:38:14','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (306,12,1147,'2023-02-09 10:38:14','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (307,12,1141,'2023-02-09 10:38:14','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (308,12,1140,'2023-02-09 10:38:14','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (309,12,1164,'2023-02-09 10:38:14','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_eeg.json'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (310,12,1143,'2023-02-09 10:38:14','131e98cf75178ba60bed88867c1dfd11aebec84564a31361c436819a2ca1a95e1b92f8eb8b174dbc7cd025509eee40d841a2177fc17c65a63351c0118fa0b6e1'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (311,12,1165,'2023-02-09 10:38:14',NULL); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (312,12,1166,'2023-02-09 10:38:19','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0//sub-PIDCC0821/sub-PIDCC0821_ses-V03_scans.tsv'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (313,12,1167,'2023-02-09 10:38:20','4b3082e57ebaf073adf4bab2353d6d8c0e42f2b9cb3914c6908ed2e131c868921bb12b7273c182a16d80ad25719f6664a85fbcef52bd7353dd2c1e2b9a683b1f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (314,12,1131,'2023-02-09 10:38:20','edc0b142f1b27c9e1968ba40554597faec34bfa739bd14bbb6a788e3f82ba39c5d9c01cb4ab31c32d79ea7153f3b71ff4ca9008253d5e9553b114bf03eb96a7e'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (315,13,1133,'2023-02-09 10:38:50','RS'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (316,13,1134,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (317,13,1132,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (318,13,1126,'2023-02-09 10:38:50','1000'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (319,13,1146,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (320,13,1129,'2023-02-09 10:38:50','190.451'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (321,13,1137,'2023-02-09 10:38:50','continuous'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (322,13,1125,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (323,13,1163,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (324,13,1145,'2023-02-09 10:38:50','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (325,13,1144,'2023-02-09 10:38:50','129'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (326,13,1138,'2023-02-09 10:38:50','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (327,13,1127,'2023-02-09 10:38:50','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (328,13,1147,'2023-02-09 10:38:50','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (329,13,1141,'2023-02-09 10:38:50','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (330,13,1140,'2023-02-09 10:38:50','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (331,13,1164,'2023-02-09 10:38:50','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_eeg.json'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (332,13,1143,'2023-02-09 10:38:50','7868fb192a1ca3ecf6211bbf73eb27e84d56e4c05f6506344adebf78c3f024fd9a68b0f5f7b28405748bbcacebe668d822abf40291a7e604ab9948757da82be7'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (333,13,1165,'2023-02-09 10:38:50',NULL); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (334,13,1166,'2023-02-09 10:38:50','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0//sub-PIDCC0821/sub-PIDCC0821_ses-V03_scans.tsv'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (335,13,1167,'2023-02-09 10:38:50','4b3082e57ebaf073adf4bab2353d6d8c0e42f2b9cb3914c6908ed2e131c868921bb12b7273c182a16d80ad25719f6664a85fbcef52bd7353dd2c1e2b9a683b1f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (336,13,1131,'2023-02-09 10:38:50','f4f82066559f01daf6c6a60d5ac55fcd8cc405a33c916195230558733c95ddee6c8c4adf73731275b630edc377925941d9c69cde35a50510e5bfb6ead1625553'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (337,14,1133,'2023-02-09 10:39:01','VEP'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (338,14,1134,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (339,14,1132,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (340,14,1126,'2023-02-09 10:39:01','1000'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (341,14,1146,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (342,14,1129,'2023-02-09 10:39:01','68.796'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (343,14,1137,'2023-02-09 10:39:01','continuous'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (344,14,1125,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (345,14,1163,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (346,14,1145,'2023-02-09 10:39:01','n/a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (347,14,1144,'2023-02-09 10:39:01','129'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (348,14,1138,'2023-02-09 10:39:01','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (349,14,1127,'2023-02-09 10:39:01','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (350,14,1147,'2023-02-09 10:39:01','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (351,14,1141,'2023-02-09 10:39:01','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (352,14,1140,'2023-02-09 10:39:01','0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (353,14,1164,'2023-02-09 10:39:01','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0/sub-PIDCC0821/ses-V03/eeg/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_eeg.json'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (354,14,1143,'2023-02-09 10:39:01','80fb7713fee4b70f7352cbbdd91bbf5ceda5bdaa1967c3dae2291c7f122d74eddf2e4e43b9bb94a8d20d54631583d4b6856fa1466f05228b7463359540ceef7f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (355,14,1165,'2023-02-09 10:39:01',NULL); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (356,14,1166,'2023-02-09 10:39:01','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0//sub-PIDCC0821/sub-PIDCC0821_ses-V03_scans.tsv'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (357,14,1167,'2023-02-09 10:39:01','4b3082e57ebaf073adf4bab2353d6d8c0e42f2b9cb3914c6908ed2e131c868921bb12b7273c182a16d80ad25719f6664a85fbcef52bd7353dd2c1e2b9a683b1f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (358,14,1131,'2023-02-09 10:39:01','39016956a2b91d497c2e7bf8d35bb44cc9ef1ebaed94f325fece26717b181636e3d3dec4774a4d6e2f46bc0d2ad2906b0e73733eab1a4e073ddddc96692ff85d'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (359,11,1148,'2023-02-09 10:39:05','7165516fb24342acaef95278e487463cd9f6efd5ef721e72b852b12d250e7cd2ee914bcf583c8aa9314332f55efa410682ce0f6a0c8bf8be043eb0c37adeeeee'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (360,11,1168,'2023-02-09 10:39:06','bda4dce29a1a8bff8a0a412c0667f07e7544ea06705ca0608fde01e4414e5fbcab460ea6458e5e720a0ea53a83e3e33966f785a4ee9e7b863354fe4048bc3e39'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (361,11,1148,'2023-02-09 10:39:07','53fb42040ef32fa260b46f452726aeea6cd086ea37ca91afc72c25c24420db17c6071ae159d47b268c5f81f5926885cc17208bc6643e7739f7cab593125b332a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (362,11,1168,'2023-02-09 10:39:07','d90b938a29ef4eca95f00ae6756dd2ad8bccac0a4a7abd43bbca02fadb3da97362db64fd2b28ef6df34e53d10ffecb3717c19b4b5815be3e91d544d69e0900ea'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (363,11,1149,'2023-02-09 10:39:09','70bf45b74e679a20cb47dd99538054df2ef070f0984836e57720462dc8a1252f9b1b8d2f0269d144bda20c39f37e50375282dc63770c63bb1fcc47425a0d248c'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (364,11,1150,'2023-02-09 10:39:10','559d6b517bdf9368e76deaf5fab3d37d04239f8ff97eadb059db0a700b5ea0ad27008f904c4dd565da446c53ec7a7abec11875f5d4d09d348ed37bc3399143af'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (365,11,1151,'2023-02-09 10:46:29','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0_chunks/sub-PIDCC0821_ses-V03_task-FACE_acq-eeg_eeg.chunks'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (366,12,1148,'2023-02-09 10:46:30','7165516fb24342acaef95278e487463cd9f6efd5ef721e72b852b12d250e7cd2ee914bcf583c8aa9314332f55efa410682ce0f6a0c8bf8be043eb0c37adeeeee'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (367,12,1168,'2023-02-09 10:46:30','bda4dce29a1a8bff8a0a412c0667f07e7544ea06705ca0608fde01e4414e5fbcab460ea6458e5e720a0ea53a83e3e33966f785a4ee9e7b863354fe4048bc3e39'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (368,12,1148,'2023-02-09 10:46:31','53fb42040ef32fa260b46f452726aeea6cd086ea37ca91afc72c25c24420db17c6071ae159d47b268c5f81f5926885cc17208bc6643e7739f7cab593125b332a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (369,12,1168,'2023-02-09 10:46:31','d90b938a29ef4eca95f00ae6756dd2ad8bccac0a4a7abd43bbca02fadb3da97362db64fd2b28ef6df34e53d10ffecb3717c19b4b5815be3e91d544d69e0900ea'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (370,12,1149,'2023-02-09 10:46:31','0c19ed7160ddabcde67e9a930de87200644cc3c6c6a45e82aab5c4f53e6985382912d1736f304ca8e9f817b171e3c46a6509a7038fa5912f226c1eeaa4081b30'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (371,12,1150,'2023-02-09 10:46:32','9ba3e51b2d4d04d73f7f2fd6498c7c0b41b64c388820ce662ea6d23bf600b0df2668b9281fb4a88a760cbaf3f63397bc1c8e9be5a5ee3c0cbb5f705100f8989c'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (372,12,1151,'2023-02-09 11:06:25','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0_chunks/sub-PIDCC0821_ses-V03_task-MMN_acq-eeg_eeg.chunks'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (373,13,1148,'2023-02-09 11:06:26','7165516fb24342acaef95278e487463cd9f6efd5ef721e72b852b12d250e7cd2ee914bcf583c8aa9314332f55efa410682ce0f6a0c8bf8be043eb0c37adeeeee'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (374,13,1168,'2023-02-09 11:06:26','bda4dce29a1a8bff8a0a412c0667f07e7544ea06705ca0608fde01e4414e5fbcab460ea6458e5e720a0ea53a83e3e33966f785a4ee9e7b863354fe4048bc3e39'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (375,13,1148,'2023-02-09 11:06:27','53fb42040ef32fa260b46f452726aeea6cd086ea37ca91afc72c25c24420db17c6071ae159d47b268c5f81f5926885cc17208bc6643e7739f7cab593125b332a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (376,13,1168,'2023-02-09 11:06:27','d90b938a29ef4eca95f00ae6756dd2ad8bccac0a4a7abd43bbca02fadb3da97362db64fd2b28ef6df34e53d10ffecb3717c19b4b5815be3e91d544d69e0900ea'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (377,13,1149,'2023-02-09 11:06:27','4409dadd7839beeec502e6135cf673ac33c3c6baebff1d952cdc413b7252b16285c4f16fa7fd82e9f11d511cb1bc697a15d9d463465c5d885b47acb265235bde'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (378,13,1150,'2023-02-09 11:06:28','8ef36e6fc9a9c1549d37f02987b1011b053e99880b81279c4eaf828c644b2b2367f0ec45e8ac97b75fad46eedb8262bbb5f865ad834e9d4ef714d911172e07a0'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (379,13,1151,'2023-02-09 11:12:05','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0_chunks/sub-PIDCC0821_ses-V03_task-RS_acq-eeg_eeg.chunks'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (380,14,1148,'2023-02-09 11:12:05','7165516fb24342acaef95278e487463cd9f6efd5ef721e72b852b12d250e7cd2ee914bcf583c8aa9314332f55efa410682ce0f6a0c8bf8be043eb0c37adeeeee'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (381,14,1168,'2023-02-09 11:12:05','bda4dce29a1a8bff8a0a412c0667f07e7544ea06705ca0608fde01e4414e5fbcab460ea6458e5e720a0ea53a83e3e33966f785a4ee9e7b863354fe4048bc3e39'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (382,14,1148,'2023-02-09 11:12:05','53fb42040ef32fa260b46f452726aeea6cd086ea37ca91afc72c25c24420db17c6071ae159d47b268c5f81f5926885cc17208bc6643e7739f7cab593125b332a'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (383,14,1168,'2023-02-09 11:12:05','d90b938a29ef4eca95f00ae6756dd2ad8bccac0a4a7abd43bbca02fadb3da97362db64fd2b28ef6df34e53d10ffecb3717c19b4b5815be3e91d544d69e0900ea'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (384,14,1149,'2023-02-09 11:12:06','56b79294aa74f86752d8f6789d46697a765b1fd63ba35321d8d29bedeb771f7e6f3dd126e0a648323b1892d46149065a2b9ec2a8a59d057dabf542102e3f6a3f'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (385,14,1150,'2023-02-09 11:12:06','66e9f52e30d407fdf000df4a773edfb80611c3ca05531e4edecafaf721ebfb46c0cef1b1b3b6899cfb0fa9230c349807d19d9ac4c1263d2dfbd2b67daac30748'); -INSERT INTO `physiological_parameter_file` (`PhysiologicalParameterFileID`, `PhysiologicalFileID`, `ParameterTypeID`, `InsertTime`, `Value`) VALUES (386,14,1151,'2023-02-09 11:14:07','bids_imports/PIDCC0821_V03_BIDSVersion_1.6.0_chunks/sub-PIDCC0821_ses-V03_task-VEP_acq-eeg_eeg.chunks'); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/raisinbread/RB_files/RB_physiological_task_event.sql b/raisinbread/RB_files/RB_physiological_task_event.sql index b13b927d672..a1e33c33427 100644 --- a/raisinbread/RB_files/RB_physiological_task_event.sql +++ b/raisinbread/RB_files/RB_physiological_task_event.sql @@ -16191,3667 +16191,5 @@ INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `Physiologic INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16188,10,10,'2019-08-21 15:11:22',1117.546000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16189,10,10,'2019-08-21 15:11:22',1117.886000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16190,10,10,'2019-08-21 15:11:22',1118.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16191,11,11,'2023-02-09 10:39:10',1.365000,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16192,11,11,'2023-02-09 10:39:10',1.535719,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16193,11,11,'2023-02-09 10:39:10',1.586724,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16194,11,11,'2023-02-09 10:39:10',1.587720,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16195,11,11,'2023-02-09 10:39:10',1.589722,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16196,11,11,'2023-02-09 10:39:10',1.590718,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16197,11,11,'2023-02-09 10:39:10',2.686000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16198,11,11,'2023-02-09 10:39:10',2.689001,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16199,11,11,'2023-02-09 10:39:10',4.023997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16200,11,11,'2023-02-09 10:39:10',7.154718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16201,11,11,'2023-02-09 10:39:10',7.386723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16202,11,11,'2023-02-09 10:39:10',7.885724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16203,11,11,'2023-02-09 10:39:10',8.560726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16204,11,11,'2023-02-09 10:39:10',10.784723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16205,11,11,'2023-02-09 10:39:10',10.799720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16206,11,11,'2023-02-09 10:39:10',11.039720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16207,11,11,'2023-02-09 10:39:10',11.060994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16208,11,11,'2023-02-09 10:39:10',11.538722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16209,11,11,'2023-02-09 10:39:10',12.078721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16210,11,11,'2023-02-09 10:39:10',12.568720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16211,11,11,'2023-02-09 10:39:10',12.581726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16212,11,11,'2023-02-09 10:39:10',12.811718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16213,11,11,'2023-02-09 10:39:10',12.833002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16214,11,11,'2023-02-09 10:39:10',13.310720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16215,11,11,'2023-02-09 10:39:10',13.997721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16216,11,11,'2023-02-09 10:39:10',14.280721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16217,11,11,'2023-02-09 10:39:10',14.302718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16218,11,11,'2023-02-09 10:39:10',14.531725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16219,11,11,'2023-02-09 10:39:10',14.552003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16220,11,11,'2023-02-09 10:39:10',15.030727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16221,11,11,'2023-02-09 10:39:10',15.623723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16222,11,11,'2023-02-09 10:39:10',15.632725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16223,11,11,'2023-02-09 10:39:10',15.645720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16224,11,11,'2023-02-09 10:39:10',15.890720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16225,11,11,'2023-02-09 10:39:10',15.911993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16226,11,11,'2023-02-09 10:39:10',16.389722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16227,11,11,'2023-02-09 10:39:10',17.050722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16228,11,11,'2023-02-09 10:39:10',17.168726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16229,11,11,'2023-02-09 10:39:10',17.183722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16230,11,11,'2023-02-09 10:39:10',17.423723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16231,11,11,'2023-02-09 10:39:10',17.444996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16232,11,11,'2023-02-09 10:39:10',17.922725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16233,11,11,'2023-02-09 10:39:10',18.569724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16234,11,11,'2023-02-09 10:39:10',18.672721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16235,11,11,'2023-02-09 10:39:10',18.685726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16236,11,11,'2023-02-09 10:39:10',18.929720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16237,11,11,'2023-02-09 10:39:10',18.951003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16238,11,11,'2023-02-09 10:39:10',19.428721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16239,11,11,'2023-02-09 10:39:10',20.115722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16240,11,11,'2023-02-09 10:39:10',20.192718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16241,11,11,'2023-02-09 10:39:10',20.207725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16242,11,11,'2023-02-09 10:39:10',20.435727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16243,11,11,'2023-02-09 10:39:10',20.457000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16244,11,11,'2023-02-09 10:39:10',20.934718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16245,11,11,'2023-02-09 10:39:10',21.528720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16246,11,11,'2023-02-09 10:39:10',21.791724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16247,11,11,'2023-02-09 10:39:10',21.805725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16248,11,11,'2023-02-09 10:39:10',22.034722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16249,11,11,'2023-02-09 10:39:10',22.055995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16250,11,11,'2023-02-09 10:39:10',22.533724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16251,11,11,'2023-02-09 10:39:10',23.128721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16252,11,11,'2023-02-09 10:39:10',23.440719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16253,11,11,'2023-02-09 10:39:10',23.455726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16254,11,11,'2023-02-09 10:39:10',23.687721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16255,11,11,'2023-02-09 10:39:10',23.708994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16256,11,11,'2023-02-09 10:39:10',24.186722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16257,11,11,'2023-02-09 10:39:10',24.887724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16258,11,11,'2023-02-09 10:39:10',25.159720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16259,11,11,'2023-02-09 10:39:10',25.173721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16260,11,11,'2023-02-09 10:39:10',25.420723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16261,11,11,'2023-02-09 10:39:10',25.441000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16262,11,11,'2023-02-09 10:39:10',25.919724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16263,11,11,'2023-02-09 10:39:10',26.553718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16264,11,11,'2023-02-09 10:39:10',26.783721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16265,11,11,'2023-02-09 10:39:10',26.799723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16266,11,11,'2023-02-09 10:39:10',27.032724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16267,11,11,'2023-02-09 10:39:10',27.053997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16268,11,11,'2023-02-09 10:39:10',27.531725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16269,11,11,'2023-02-09 10:39:10',28.192725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16270,11,11,'2023-02-09 10:39:10',28.247724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16271,11,11,'2023-02-09 10:39:10',28.261725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16272,11,11,'2023-02-09 10:39:10',28.485723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16273,11,11,'2023-02-09 10:39:10',28.506996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16274,11,11,'2023-02-09 10:39:10',28.984725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16275,11,11,'2023-02-09 10:39:10',29.565721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16276,11,11,'2023-02-09 10:39:10',29.576725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16277,11,11,'2023-02-09 10:39:10',29.590726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16278,11,11,'2023-02-09 10:39:10',29.831723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16279,11,11,'2023-02-09 10:39:10',29.852000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16280,11,11,'2023-02-09 10:39:10',30.330724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16281,11,11,'2023-02-09 10:39:10',31.017725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16282,11,11,'2023-02-09 10:39:10',31.471726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16283,11,11,'2023-02-09 10:39:10',31.487719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16284,11,11,'2023-02-09 10:39:10',31.724722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16285,11,11,'2023-02-09 10:39:10',31.745995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16286,11,11,'2023-02-09 10:39:10',32.223723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16287,11,11,'2023-02-09 10:39:10',32.737722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16288,11,11,'2023-02-09 10:39:10',33.550723,0.000000,NULL,'nan',NULL,NULL,'dist',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16289,11,11,'2023-02-09 10:39:10',33.633000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16290,11,11,'2023-02-09 10:39:10',34.631003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16291,11,11,'2023-02-09 10:39:10',36.921726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16292,11,11,'2023-02-09 10:39:10',36.937719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16293,11,11,'2023-02-09 10:39:10',37.175718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16294,11,11,'2023-02-09 10:39:10',37.197002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16295,11,11,'2023-02-09 10:39:10',37.674720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16296,11,11,'2023-02-09 10:39:10',38.321719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16297,11,11,'2023-02-09 10:39:10',38.619726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16298,11,11,'2023-02-09 10:39:10',38.636724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16299,11,11,'2023-02-09 10:39:10',38.867723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16300,11,11,'2023-02-09 10:39:10',38.888996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16301,11,11,'2023-02-09 10:39:10',39.366724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16302,11,11,'2023-02-09 10:39:10',39.987723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16303,11,11,'2023-02-09 10:39:10',40.114719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16304,11,11,'2023-02-09 10:39:10',40.130721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16305,11,11,'2023-02-09 10:39:10',40.374725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16306,11,11,'2023-02-09 10:39:10',40.395998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16307,11,11,'2023-02-09 10:39:10',40.873727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16308,11,11,'2023-02-09 10:39:10',41.413726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16309,11,11,'2023-02-09 10:39:10',41.458727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16310,11,11,'2023-02-09 10:39:10',41.473723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16311,11,11,'2023-02-09 10:39:10',41.693718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16312,11,11,'2023-02-09 10:39:10',41.715002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16313,11,11,'2023-02-09 10:39:10',42.192720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16314,11,11,'2023-02-09 10:39:10',42.693723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16315,11,11,'2023-02-09 10:39:10',42.735726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16316,11,11,'2023-02-09 10:39:10',42.756718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16317,11,11,'2023-02-09 10:39:10',42.986721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16318,11,11,'2023-02-09 10:39:10',43.007994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16319,11,11,'2023-02-09 10:39:10',43.485722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16320,11,11,'2023-02-09 10:39:10',44.079724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16321,11,11,'2023-02-09 10:39:10',44.538724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16322,11,11,'2023-02-09 10:39:10',44.553721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16323,11,11,'2023-02-09 10:39:10',44.785725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16324,11,11,'2023-02-09 10:39:10',44.806999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16325,11,11,'2023-02-09 10:39:10',45.284727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16326,11,11,'2023-02-09 10:39:10',45.932722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16327,11,11,'2023-02-09 10:39:10',46.186723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16328,11,11,'2023-02-09 10:39:10',46.203722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16329,11,11,'2023-02-09 10:39:10',46.438724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16330,11,11,'2023-02-09 10:39:10',46.459997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16331,11,11,'2023-02-09 10:39:10',46.937725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16332,11,11,'2023-02-09 10:39:10',47.464719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16333,11,11,'2023-02-09 10:39:10',47.802718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16334,11,11,'2023-02-09 10:39:10',47.817724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16335,11,11,'2023-02-09 10:39:10',48.051720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16336,11,11,'2023-02-09 10:39:10',48.072994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16337,11,11,'2023-02-09 10:39:10',48.550722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16338,11,11,'2023-02-09 10:39:10',49.223722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16339,11,11,'2023-02-09 10:39:10',49.266721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16340,11,11,'2023-02-09 10:39:10',49.281718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16341,11,11,'2023-02-09 10:39:10',49.517725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16342,11,11,'2023-02-09 10:39:10',49.538003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16343,11,11,'2023-02-09 10:39:10',50.016727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16344,11,11,'2023-02-09 10:39:10',50.583722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16345,11,11,'2023-02-09 10:39:10',51.073722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16346,11,11,'2023-02-09 10:39:10',51.089724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16347,11,11,'2023-02-09 10:39:10',51.330721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16348,11,11,'2023-02-09 10:39:10',51.350998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16349,11,11,'2023-02-09 10:39:10',51.829722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16350,11,11,'2023-02-09 10:39:10',52.449725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16351,11,11,'2023-02-09 10:39:10',52.657720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16352,11,11,'2023-02-09 10:39:10',52.674719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16353,11,11,'2023-02-09 10:39:10',52.915725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16354,11,11,'2023-02-09 10:39:10',52.936999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16355,11,11,'2023-02-09 10:39:10',53.414727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16356,11,11,'2023-02-09 10:39:10',54.008719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16357,11,11,'2023-02-09 10:39:10',54.306726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16358,11,11,'2023-02-09 10:39:10',54.321723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16359,11,11,'2023-02-09 10:39:10',54.555719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16360,11,11,'2023-02-09 10:39:10',54.577002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16361,11,11,'2023-02-09 10:39:10',55.054720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16362,11,11,'2023-02-09 10:39:10',55.728726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16363,11,11,'2023-02-09 10:39:10',55.745724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16364,11,11,'2023-02-09 10:39:10',55.761727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16365,11,11,'2023-02-09 10:39:10',55.994727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16366,11,11,'2023-02-09 10:39:10',56.016000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16367,11,11,'2023-02-09 10:39:10',56.493718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16368,11,11,'2023-02-09 10:39:10',57.154719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16369,11,11,'2023-02-09 10:39:10',57.170721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16370,11,11,'2023-02-09 10:39:10',57.187720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16371,11,11,'2023-02-09 10:39:10',57.420720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16372,11,11,'2023-02-09 10:39:10',57.442999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16373,11,11,'2023-02-09 10:39:10',57.919722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16374,11,11,'2023-02-09 10:39:10',58.580722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16375,11,11,'2023-02-09 10:39:10',58.828719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16376,11,11,'2023-02-09 10:39:10',58.845717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16377,11,11,'2023-02-09 10:39:10',59.086724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16378,11,11,'2023-02-09 10:39:10',59.107997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16379,11,11,'2023-02-09 10:39:10',59.585725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16380,11,11,'2023-02-09 10:39:10',60.179717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16381,11,11,'2023-02-09 10:39:10',60.337723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16382,11,11,'2023-02-09 10:39:10',60.352720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16383,11,11,'2023-02-09 10:39:10',60.592721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16384,11,11,'2023-02-09 10:39:10',60.615000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16385,11,11,'2023-02-09 10:39:10',61.091722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16386,11,11,'2023-02-09 10:39:10',61.645722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16387,11,11,'2023-02-09 10:39:10',62.025724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16388,11,11,'2023-02-09 10:39:10',62.043719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16389,11,11,'2023-02-09 10:39:10',62.272726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16390,11,11,'2023-02-09 10:39:10',62.293999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16391,11,11,'2023-02-09 10:39:10',62.771727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16392,11,11,'2023-02-09 10:39:10',63.311726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16393,11,11,'2023-02-09 10:39:10',64.049723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16394,11,11,'2023-02-09 10:39:10',64.064719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16395,11,11,'2023-02-09 10:39:10',64.298725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16396,11,11,'2023-02-09 10:39:10',64.318993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16397,11,11,'2023-02-09 10:39:10',64.797727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16398,11,11,'2023-02-09 10:39:10',65.484718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16399,11,11,'2023-02-09 10:39:10',66.153724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16400,11,11,'2023-02-09 10:39:10',66.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16401,11,11,'2023-02-09 10:39:10',66.417724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16402,11,11,'2023-02-09 10:39:10',66.438997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16403,11,11,'2023-02-09 10:39:10',66.916726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16404,11,11,'2023-02-09 10:39:10',67.616722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16405,11,11,'2023-02-09 10:39:10',68.313721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16406,11,11,'2023-02-09 10:39:10',68.330719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16407,11,11,'2023-02-09 10:39:10',68.563719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16408,11,11,'2023-02-09 10:39:10',68.585003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16409,11,11,'2023-02-09 10:39:10',69.062721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16410,11,11,'2023-02-09 10:39:10',69.616721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16411,11,11,'2023-02-09 10:39:10',70.289721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16412,11,11,'2023-02-09 10:39:10',70.304718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16413,11,11,'2023-02-09 10:39:10',70.535726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16414,11,11,'2023-02-09 10:39:10',70.557000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16415,11,11,'2023-02-09 10:39:10',71.034718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16416,11,11,'2023-02-09 10:39:10',71.615725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16417,11,11,'2023-02-09 10:39:10',71.913721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16418,11,11,'2023-02-09 10:39:10',71.928718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16419,11,11,'2023-02-09 10:39:10',72.161718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16420,11,11,'2023-02-09 10:39:10',72.183002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16421,11,11,'2023-02-09 10:39:10',72.660720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16422,11,11,'2023-02-09 10:39:10',73.174718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16423,11,11,'2023-02-09 10:39:10',73.433719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16424,11,11,'2023-02-09 10:39:10',73.448726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16425,11,11,'2023-02-09 10:39:10',73.694722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16426,11,11,'2023-02-09 10:39:10',73.714999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16427,11,11,'2023-02-09 10:39:10',74.193723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16428,11,11,'2023-02-09 10:39:10',74.827727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16429,11,11,'2023-02-09 10:39:10',75.041727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16430,11,11,'2023-02-09 10:39:10',75.057720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16431,11,11,'2023-02-09 10:39:10',75.293727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16432,11,11,'2023-02-09 10:39:10',75.315000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16433,11,11,'2023-02-09 10:39:10',75.792719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16434,11,11,'2023-02-09 10:39:10',76.440724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16435,11,11,'2023-02-09 10:39:10',76.713725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16436,11,11,'2023-02-09 10:39:10',76.729718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16437,11,11,'2023-02-09 10:39:10',76.973722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16438,11,11,'2023-02-09 10:39:10',76.994000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16439,11,11,'2023-02-09 10:39:10',77.472724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16440,11,11,'2023-02-09 10:39:10',78.172720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16441,11,11,'2023-02-09 10:39:10',78.401727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16442,11,11,'2023-02-09 10:39:10',78.417719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16443,11,11,'2023-02-09 10:39:10',78.652721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16444,11,11,'2023-02-09 10:39:10',78.672999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16445,11,11,'2023-02-09 10:39:10',79.151723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16446,11,11,'2023-02-09 10:39:10',79.812723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16447,11,11,'2023-02-09 10:39:10',80.049726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16448,11,11,'2023-02-09 10:39:10',80.065719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16449,11,11,'2023-02-09 10:39:10',80.305720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16450,11,11,'2023-02-09 10:39:10',80.326993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16451,11,11,'2023-02-09 10:39:10',80.804721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16452,11,11,'2023-02-09 10:39:10',81.451720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16453,11,11,'2023-02-09 10:39:10',81.609726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16454,11,11,'2023-02-09 10:39:10',81.624723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16455,11,11,'2023-02-09 10:39:10',81.864723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16456,11,11,'2023-02-09 10:39:10',81.885997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16457,11,11,'2023-02-09 10:39:10',82.363725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16458,11,11,'2023-02-09 10:39:10',83.051722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16459,11,11,'2023-02-09 10:39:10',83.273718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16460,11,11,'2023-02-09 10:39:10',83.288725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16461,11,11,'2023-02-09 10:39:10',83.517722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16462,11,11,'2023-02-09 10:39:10',83.538995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16463,11,11,'2023-02-09 10:39:10',84.016723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16464,11,11,'2023-02-09 10:39:10',84.650727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16465,11,11,'2023-02-09 10:39:10',84.873719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16466,11,11,'2023-02-09 10:39:10',84.890718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16467,11,11,'2023-02-09 10:39:10',85.130719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16468,11,11,'2023-02-09 10:39:10',85.150996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16469,11,11,'2023-02-09 10:39:10',85.629720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16470,11,11,'2023-02-09 10:39:10',86.263724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16471,11,11,'2023-02-09 10:39:10',86.393727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16472,11,11,'2023-02-09 10:39:10',86.409720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16473,11,11,'2023-02-09 10:39:10',86.635720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16474,11,11,'2023-02-09 10:39:10',86.657999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16475,11,11,'2023-02-09 10:39:10',87.134721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16476,11,11,'2023-02-09 10:39:10',87.808727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16477,11,11,'2023-02-09 10:39:10',87.985722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16478,11,11,'2023-02-09 10:39:10',88.002721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16479,11,11,'2023-02-09 10:39:10',88.248726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16480,11,11,'2023-02-09 10:39:10',88.270000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16481,11,11,'2023-02-09 10:39:10',88.747718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16482,11,11,'2023-02-09 10:39:10',89.435724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16483,11,11,'2023-02-09 10:39:10',89.593720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16484,11,11,'2023-02-09 10:39:10',89.608727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16485,11,11,'2023-02-09 10:39:10',89.848718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16486,11,11,'2023-02-09 10:39:10',89.870001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16487,11,11,'2023-02-09 10:39:10',90.347719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16488,11,11,'2023-02-09 10:39:10',91.034720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16489,11,11,'2023-02-09 10:39:10',91.049727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16490,11,11,'2023-02-09 10:39:10',91.065720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16491,11,11,'2023-02-09 10:39:10',91.300721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16492,11,11,'2023-02-09 10:39:10',91.323000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16493,11,11,'2023-02-09 10:39:10',91.799723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16494,11,11,'2023-02-09 10:39:10',92.367724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16495,11,11,'2023-02-09 10:39:10',92.729722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16496,11,11,'2023-02-09 10:39:10',92.745725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16497,11,11,'2023-02-09 10:39:10',92.993722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16498,11,11,'2023-02-09 10:39:10',93.014995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16499,11,11,'2023-02-09 10:39:10',93.492723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16500,11,11,'2023-02-09 10:39:10',94.019727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16501,11,11,'2023-02-09 10:39:10',94.315722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16502,11,11,'2023-02-09 10:39:10',94.333726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16503,11,11,'2023-02-09 10:39:10',94.566727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16504,11,11,'2023-02-09 10:39:10',94.588000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16505,11,11,'2023-02-09 10:39:10',95.065718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16506,11,11,'2023-02-09 10:39:10',95.712727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16507,11,11,'2023-02-09 10:39:10',96.009718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16508,11,11,'2023-02-09 10:39:10',96.025721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16509,11,11,'2023-02-09 10:39:10',96.259727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16510,11,11,'2023-02-09 10:39:10',96.279994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16511,11,11,'2023-02-09 10:39:10',96.758718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16512,11,11,'2023-02-09 10:39:10',97.312719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16513,11,11,'2023-02-09 10:39:10',97.481718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16514,11,11,'2023-02-09 10:39:10',97.497721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16515,11,11,'2023-02-09 10:39:10',97.738727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16516,11,11,'2023-02-09 10:39:10',97.760000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16517,11,11,'2023-02-09 10:39:10',98.237719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16518,11,11,'2023-02-09 10:39:10',98.898719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16519,11,11,'2023-02-09 10:39:10',99.225724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16520,11,11,'2023-02-09 10:39:10',99.241726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16521,11,11,'2023-02-09 10:39:10',99.471719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16522,11,11,'2023-02-09 10:39:10',99.491997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16523,11,11,'2023-02-09 10:39:10',99.970721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16524,11,11,'2023-02-09 10:39:10',100.617720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16525,11,11,'2023-02-09 10:39:10',100.681721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16526,11,11,'2023-02-09 10:39:10',100.697723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16527,11,11,'2023-02-09 10:39:10',100.937724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16528,11,11,'2023-02-09 10:39:10',100.958997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16529,11,11,'2023-02-09 10:39:10',101.436726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16530,11,11,'2023-02-09 10:39:10',102.016726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16531,11,11,'2023-02-09 10:39:10',103.553723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16532,11,11,'2023-02-09 10:39:10',103.568720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16533,11,11,'2023-02-09 10:39:10',103.816727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16534,11,11,'2023-02-09 10:39:10',103.838000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16535,11,11,'2023-02-09 10:39:10',104.315718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16536,11,11,'2023-02-09 10:39:10',104.882724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16537,11,11,'2023-02-09 10:39:10',106.401726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16538,11,11,'2023-02-09 10:39:10',106.416723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16539,11,11,'2023-02-09 10:39:10',106.641726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16540,11,11,'2023-02-09 10:39:10',106.663000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16541,11,11,'2023-02-09 10:39:10',107.140718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16542,11,11,'2023-02-09 10:39:10',107.694718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16543,11,11,'2023-02-09 10:39:10',107.921724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16544,11,11,'2023-02-09 10:39:10',107.937726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16545,11,11,'2023-02-09 10:39:10',108.160718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16546,11,11,'2023-02-09 10:39:10',108.182002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16547,11,11,'2023-02-09 10:39:10',108.659720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16548,11,11,'2023-02-09 10:39:10',109.280718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16549,11,11,'2023-02-09 10:39:10',109.689718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16550,11,11,'2023-02-09 10:39:10',109.704725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16551,11,11,'2023-02-09 10:39:10',109.947723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16552,11,11,'2023-02-09 10:39:10',109.968001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16553,11,11,'2023-02-09 10:39:10',110.446725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16554,11,11,'2023-02-09 10:39:10',110.973719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16555,11,11,'2023-02-09 10:39:10',111.257724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16556,11,11,'2023-02-09 10:39:10',111.272721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16557,11,11,'2023-02-09 10:39:10',111.506727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16558,11,11,'2023-02-09 10:39:10',111.526995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16559,11,11,'2023-02-09 10:39:10',112.005719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16560,11,11,'2023-02-09 10:39:10',112.519717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16561,11,11,'2023-02-09 10:39:10',112.753723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16562,11,11,'2023-02-09 10:39:10',112.768720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16563,11,11,'2023-02-09 10:39:10',113.012724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16564,11,11,'2023-02-09 10:39:10',113.033001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16565,11,11,'2023-02-09 10:39:10',113.511725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16566,11,11,'2023-02-09 10:39:10',114.118723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16567,11,11,'2023-02-09 10:39:10',114.376718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16568,11,11,'2023-02-09 10:39:10',114.392720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16569,11,11,'2023-02-09 10:39:10',114.625721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16570,11,11,'2023-02-09 10:39:10',114.645998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16571,11,11,'2023-02-09 10:39:10',115.124722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16572,11,11,'2023-02-09 10:39:10',115.824718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16573,11,11,'2023-02-09 10:39:10',116.153725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16574,11,11,'2023-02-09 10:39:10',116.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16575,11,11,'2023-02-09 10:39:10',116.397719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16576,11,11,'2023-02-09 10:39:10',116.419998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16577,11,11,'2023-02-09 10:39:10',116.896720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16578,11,11,'2023-02-09 10:39:10',117.597722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16579,11,11,'2023-02-09 10:39:10',117.769719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16580,11,11,'2023-02-09 10:39:10',117.785722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16581,11,11,'2023-02-09 10:39:10',118.010725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16582,11,11,'2023-02-09 10:39:10',118.031999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16583,11,11,'2023-02-09 10:39:10',118.509727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16584,11,11,'2023-02-09 10:39:10',119.076722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16585,11,11,'2023-02-09 10:39:10',119.704721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16586,11,11,'2023-02-09 10:39:10',119.720724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16587,11,11,'2023-02-09 10:39:10',119.943726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16588,11,11,'2023-02-09 10:39:10',119.963994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16589,11,11,'2023-02-09 10:39:10',120.442718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16590,11,11,'2023-02-09 10:39:10',121.022719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16591,11,11,'2023-02-09 10:39:10',121.600718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16592,11,11,'2023-02-09 10:39:10',121.616721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16593,11,11,'2023-02-09 10:39:10',121.849721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16594,11,11,'2023-02-09 10:39:10',121.869998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16595,11,11,'2023-02-09 10:39:10',122.348722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16596,11,11,'2023-02-09 10:39:10',122.915718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16597,11,11,'2023-02-09 10:39:10',123.185722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16598,11,11,'2023-02-09 10:39:10',123.201725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16599,11,11,'2023-02-09 10:39:10',123.434725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16600,11,11,'2023-02-09 10:39:10',123.455999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16601,11,11,'2023-02-09 10:39:10',123.933727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16602,11,11,'2023-02-09 10:39:10',124.541720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16603,11,11,'2023-02-09 10:39:10',124.768725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16604,11,11,'2023-02-09 10:39:10',124.785724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16605,11,11,'2023-02-09 10:39:10',125.008726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16606,11,11,'2023-02-09 10:39:10',125.028993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16607,11,11,'2023-02-09 10:39:10',125.507717,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16608,11,11,'2023-02-09 10:39:10',126.193723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16609,11,11,'2023-02-09 10:39:10',126.401718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16610,11,11,'2023-02-09 10:39:10',126.417721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16611,11,11,'2023-02-09 10:39:10',126.634718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16612,11,11,'2023-02-09 10:39:10',126.654000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16613,11,11,'2023-02-09 10:39:10',127.133720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16614,11,11,'2023-02-09 10:39:10',127.793724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16615,11,11,'2023-02-09 10:39:10',128.328724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16616,11,11,'2023-02-09 10:39:10',128.344727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16617,11,11,'2023-02-09 10:39:10',128.433723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16618,11,11,'2023-02-09 10:39:10',128.454996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16619,11,11,'2023-02-09 10:39:10',128.932724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16620,11,11,'2023-02-09 10:39:10',129.632720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16621,11,11,'2023-02-09 10:39:10',130.544725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16622,11,11,'2023-02-09 10:39:10',130.560718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16623,11,11,'2023-02-09 10:39:10',130.632725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16624,11,11,'2023-02-09 10:39:10',130.653998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16625,11,11,'2023-02-09 10:39:10',131.131726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16626,11,11,'2023-02-09 10:39:10',131.818727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16627,11,11,'2023-02-09 10:39:10',132.072719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16628,11,11,'2023-02-09 10:39:10',132.088722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16629,11,11,'2023-02-09 10:39:10',132.165718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16630,11,11,'2023-02-09 10:39:10',132.187001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16631,11,11,'2023-02-09 10:39:10',132.664720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16632,11,11,'2023-02-09 10:39:10',133.337719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16633,11,11,'2023-02-09 10:39:10',133.616726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16634,11,11,'2023-02-09 10:39:10',133.632719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16635,11,11,'2023-02-09 10:39:10',133.711726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16636,11,11,'2023-02-09 10:39:10',133.733000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16637,11,11,'2023-02-09 10:39:10',134.210718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16638,11,11,'2023-02-09 10:39:10',134.830721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16639,11,11,'2023-02-09 10:39:10',135.072723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16640,11,11,'2023-02-09 10:39:10',135.088726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16641,11,11,'2023-02-09 10:39:10',135.163720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16642,11,11,'2023-02-09 10:39:10',135.184993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16643,11,11,'2023-02-09 10:39:10',135.662722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16644,11,11,'2023-02-09 10:39:10',136.336727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16645,11,11,'2023-02-09 10:39:10',136.608723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16646,11,11,'2023-02-09 10:39:10',136.624726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16647,11,11,'2023-02-09 10:39:10',136.696723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16648,11,11,'2023-02-09 10:39:10',136.717001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16649,11,11,'2023-02-09 10:39:10',137.195725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16650,11,11,'2023-02-09 10:39:10',137.789727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16651,11,11,'2023-02-09 10:39:10',138.112719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16652,11,11,'2023-02-09 10:39:10',138.128721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16653,11,11,'2023-02-09 10:39:10',138.202720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16654,11,11,'2023-02-09 10:39:10',138.223993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16655,11,11,'2023-02-09 10:39:10',138.701722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16656,11,11,'2023-02-09 10:39:10',139.388722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16657,11,11,'2023-02-09 10:39:10',139.720726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16658,11,11,'2023-02-09 10:39:10',139.736719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16659,11,11,'2023-02-09 10:39:10',139.815727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16660,11,11,'2023-02-09 10:39:10',139.835994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16661,11,11,'2023-02-09 10:39:10',140.314718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16662,11,11,'2023-02-09 10:39:10',140.841722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16663,11,11,'2023-02-09 10:39:10',141.128725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16664,11,11,'2023-02-09 10:39:10',141.144718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16665,11,11,'2023-02-09 10:39:10',141.214723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16666,11,11,'2023-02-09 10:39:10',141.235997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16667,11,11,'2023-02-09 10:39:10',141.713725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16668,11,11,'2023-02-09 10:39:10',142.414727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16669,11,11,'2023-02-09 10:39:10',142.736723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16670,11,11,'2023-02-09 10:39:10',142.752726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16671,11,11,'2023-02-09 10:39:10',142.827720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16672,11,11,'2023-02-09 10:39:10',142.848993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16673,11,11,'2023-02-09 10:39:10',143.326722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16674,11,11,'2023-02-09 10:39:10',144.013723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16675,11,11,'2023-02-09 10:39:10',144.264727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16676,11,11,'2023-02-09 10:39:10',144.280720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16677,11,11,'2023-02-09 10:39:10',144.360723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16678,11,11,'2023-02-09 10:39:10',144.381001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16679,11,11,'2023-02-09 10:39:10',144.859725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16680,11,11,'2023-02-09 10:39:10',145.506724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16681,11,11,'2023-02-09 10:39:10',145.768722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16682,11,11,'2023-02-09 10:39:10',145.784725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16683,11,11,'2023-02-09 10:39:10',145.853725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16684,11,11,'2023-02-09 10:39:10',145.874002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16685,11,11,'2023-02-09 10:39:10',146.352726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16686,11,11,'2023-02-09 10:39:10',146.985724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16687,11,11,'2023-02-09 10:39:10',147.235723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16688,11,11,'2023-02-09 10:39:10',147.254723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16689,11,11,'2023-02-09 10:39:10',147.332725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16690,11,11,'2023-02-09 10:39:10',147.353998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16691,11,11,'2023-02-09 10:39:10',147.831726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16692,11,11,'2023-02-09 10:39:10',148.345725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16693,11,11,'2023-02-09 10:39:10',148.720718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16694,11,11,'2023-02-09 10:39:10',148.736720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16695,11,11,'2023-02-09 10:39:10',148.811725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16696,11,11,'2023-02-09 10:39:10',148.832998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16697,11,11,'2023-02-09 10:39:10',149.310727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16698,11,11,'2023-02-09 10:39:10',149.824725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16699,11,11,'2023-02-09 10:39:10',150.064726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16700,11,11,'2023-02-09 10:39:10',150.080718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16701,11,11,'2023-02-09 10:39:10',150.157725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16702,11,11,'2023-02-09 10:39:10',150.178998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16703,11,11,'2023-02-09 10:39:10',150.656726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16704,11,11,'2023-02-09 10:39:10',151.330722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16705,11,11,'2023-02-09 10:39:10',151.584723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16706,11,11,'2023-02-09 10:39:10',151.600726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16707,11,11,'2023-02-09 10:39:10',151.677722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16708,11,11,'2023-02-09 10:39:10',151.698000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16709,11,11,'2023-02-09 10:39:10',152.176724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16710,11,11,'2023-02-09 10:39:10',152.823723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16711,11,11,'2023-02-09 10:39:10',153.104721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16712,11,11,'2023-02-09 10:39:10',153.120724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16713,11,11,'2023-02-09 10:39:10',153.196724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16714,11,11,'2023-02-09 10:39:10',153.217998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16715,11,11,'2023-02-09 10:39:10',153.695726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16716,11,11,'2023-02-09 10:39:10',154.356726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16717,11,11,'2023-02-09 10:39:10',154.624719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16718,11,11,'2023-02-09 10:39:10',154.640722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16719,11,11,'2023-02-09 10:39:10',154.715726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16720,11,11,'2023-02-09 10:39:10',154.737000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16721,11,11,'2023-02-09 10:39:10',155.214718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16722,11,11,'2023-02-09 10:39:10',155.849717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16723,11,11,'2023-02-09 10:39:10',156.080726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16724,11,11,'2023-02-09 10:39:10',156.096719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16725,11,11,'2023-02-09 10:39:10',156.169722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16726,11,11,'2023-02-09 10:39:10',156.189999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16727,11,11,'2023-02-09 10:39:10',156.668723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16728,11,11,'2023-02-09 10:39:10',157.341723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16729,11,11,'2023-02-09 10:39:10',157.600724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16730,11,11,'2023-02-09 10:39:10',157.616727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16731,11,11,'2023-02-09 10:39:10',157.688724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16732,11,11,'2023-02-09 10:39:10',157.709997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16733,11,11,'2023-02-09 10:39:10',158.187725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16734,11,11,'2023-02-09 10:39:10',158.834724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16735,11,11,'2023-02-09 10:39:10',159.496720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16736,11,11,'2023-02-09 10:39:10',159.512723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16737,11,11,'2023-02-09 10:39:10',159.594718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16738,11,11,'2023-02-09 10:39:10',159.614996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16739,11,11,'2023-02-09 10:39:10',160.093720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16740,11,11,'2023-02-09 10:39:10',160.793726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16741,11,11,'2023-02-09 10:39:10',161.024725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16742,11,11,'2023-02-09 10:39:10',161.040717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16743,11,11,'2023-02-09 10:39:10',161.113720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16744,11,11,'2023-02-09 10:39:10',161.134994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16745,11,11,'2023-02-09 10:39:10',161.612722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16746,11,11,'2023-02-09 10:39:10',162.206724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16747,11,11,'2023-02-09 10:39:10',162.488718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16748,11,11,'2023-02-09 10:39:10',162.504721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16749,11,11,'2023-02-09 10:39:10',162.579725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16750,11,11,'2023-02-09 10:39:10',162.600998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16751,11,11,'2023-02-09 10:39:10',163.078727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16752,11,11,'2023-02-09 10:39:10',163.765718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16753,11,11,'2023-02-09 10:39:10',164.008726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16754,11,11,'2023-02-09 10:39:10',164.024718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16755,11,11,'2023-02-09 10:39:10',164.098717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16756,11,11,'2023-02-09 10:39:10',164.120001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16757,11,11,'2023-02-09 10:39:10',164.597719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16758,11,11,'2023-02-09 10:39:10',165.165720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16759,11,11,'2023-02-09 10:39:10',165.424721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16760,11,11,'2023-02-09 10:39:10',165.440724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16761,11,11,'2023-02-09 10:39:10',165.512721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16762,11,11,'2023-02-09 10:39:10',165.532998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16763,11,11,'2023-02-09 10:39:10',166.011722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16764,11,11,'2023-02-09 10:39:10',166.671727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16765,11,11,'2023-02-09 10:39:10',166.984720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16766,11,11,'2023-02-09 10:39:10',167.000723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16767,11,11,'2023-02-09 10:39:10',167.071725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16768,11,11,'2023-02-09 10:39:10',167.092998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16769,11,11,'2023-02-09 10:39:10',167.570726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16770,11,11,'2023-02-09 10:39:10',168.111721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16771,11,11,'2023-02-09 10:39:10',168.416718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16772,11,11,'2023-02-09 10:39:10',168.432721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16773,11,11,'2023-02-09 10:39:10',168.510723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16774,11,11,'2023-02-09 10:39:10',168.531996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16775,11,11,'2023-02-09 10:39:10',169.009725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16776,11,11,'2023-02-09 10:39:10',169.657719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16777,11,11,'2023-02-09 10:39:10',169.952719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16778,11,11,'2023-02-09 10:39:10',169.968722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16779,11,11,'2023-02-09 10:39:10',170.043726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16780,11,11,'2023-02-09 10:39:10',170.064999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16781,11,11,'2023-02-09 10:39:10',170.542718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16782,11,11,'2023-02-09 10:39:10',171.069721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16783,11,11,'2023-02-09 10:39:10',171.344725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16784,11,11,'2023-02-09 10:39:10',171.360718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16785,11,11,'2023-02-09 10:39:10',171.429717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16786,11,11,'2023-02-09 10:39:10',171.449995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16787,11,11,'2023-02-09 10:39:10',171.928719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16788,11,11,'2023-02-09 10:39:10',172.588723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16789,11,11,'2023-02-09 10:39:10',172.840724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16790,11,11,'2023-02-09 10:39:10',172.856726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16791,11,11,'2023-02-09 10:39:10',172.935724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16792,11,11,'2023-02-09 10:39:10',172.956997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16793,11,11,'2023-02-09 10:39:10',173.434726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16794,11,11,'2023-02-09 10:39:10',174.055724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16795,11,11,'2023-02-09 10:39:10',174.296721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16796,11,11,'2023-02-09 10:39:10',174.312723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16797,11,11,'2023-02-09 10:39:10',174.388724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16798,11,11,'2023-02-09 10:39:10',174.409001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16799,11,11,'2023-02-09 10:39:10',174.887725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16800,11,11,'2023-02-09 10:39:10',175.414719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16801,11,11,'2023-02-09 10:39:10',175.712726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16802,11,11,'2023-02-09 10:39:10',175.755997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16803,12,12,'2023-02-09 10:46:31',1.205003,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16804,12,12,'2023-02-09 10:46:31',1.386625,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16805,12,12,'2023-02-09 10:46:31',1.435619,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16806,12,12,'2023-02-09 10:46:31',1.437620,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16807,12,12,'2023-02-09 10:46:31',1.438616,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16808,12,12,'2023-02-09 10:46:31',1.439622,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16809,12,12,'2023-02-09 10:46:31',2.537000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16810,12,12,'2023-02-09 10:46:31',3.668626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16811,12,12,'2023-02-09 10:46:31',5.476997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16812,12,12,'2023-02-09 10:46:31',9.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16813,12,12,'2023-02-09 10:46:31',9.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16814,12,12,'2023-02-09 10:46:31',9.677626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16815,12,12,'2023-02-09 10:46:31',9.696626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16816,12,12,'2023-02-09 10:46:31',10.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16817,12,12,'2023-02-09 10:46:31',10.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16818,12,12,'2023-02-09 10:46:31',10.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16819,12,12,'2023-02-09 10:46:31',10.710621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16820,12,12,'2023-02-09 10:46:31',11.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16821,12,12,'2023-02-09 10:46:31',11.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16822,12,12,'2023-02-09 10:46:31',11.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16823,12,12,'2023-02-09 10:46:31',11.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16824,12,12,'2023-02-09 10:46:31',12.145617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16825,12,12,'2023-02-09 10:46:31',12.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16826,12,12,'2023-02-09 10:46:31',12.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16827,12,12,'2023-02-09 10:46:31',12.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16828,12,12,'2023-02-09 10:46:31',13.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16829,12,12,'2023-02-09 10:46:31',13.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16830,12,12,'2023-02-09 10:46:31',13.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16831,12,12,'2023-02-09 10:46:31',13.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16832,12,12,'2023-02-09 10:46:31',14.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16833,12,12,'2023-02-09 10:46:31',14.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16834,12,12,'2023-02-09 10:46:31',14.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16835,12,12,'2023-02-09 10:46:31',14.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16836,12,12,'2023-02-09 10:46:31',15.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16837,12,12,'2023-02-09 10:46:31',15.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16838,12,12,'2023-02-09 10:46:31',15.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16839,12,12,'2023-02-09 10:46:31',15.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16840,12,12,'2023-02-09 10:46:31',16.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16841,12,12,'2023-02-09 10:46:31',16.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16842,12,12,'2023-02-09 10:46:31',16.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16843,12,12,'2023-02-09 10:46:31',16.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16844,12,12,'2023-02-09 10:46:31',17.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16845,12,12,'2023-02-09 10:46:31',17.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16846,12,12,'2023-02-09 10:46:31',17.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16847,12,12,'2023-02-09 10:46:31',17.848623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16848,12,12,'2023-02-09 10:46:31',18.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16849,12,12,'2023-02-09 10:46:31',18.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16850,12,12,'2023-02-09 10:46:31',18.854623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16851,12,12,'2023-02-09 10:46:31',18.865616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16852,12,12,'2023-02-09 10:46:31',19.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16853,12,12,'2023-02-09 10:46:31',19.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16854,12,12,'2023-02-09 10:46:31',19.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16855,12,12,'2023-02-09 10:46:31',19.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16856,12,12,'2023-02-09 10:46:31',20.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16857,12,12,'2023-02-09 10:46:31',20.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16858,12,12,'2023-02-09 10:46:31',20.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16859,12,12,'2023-02-09 10:46:31',20.909621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16860,12,12,'2023-02-09 10:46:31',21.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16861,12,12,'2023-02-09 10:46:31',21.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16862,12,12,'2023-02-09 10:46:31',21.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16863,12,12,'2023-02-09 10:46:31',21.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16864,12,12,'2023-02-09 10:46:31',22.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16865,12,12,'2023-02-09 10:46:31',22.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16866,12,12,'2023-02-09 10:46:31',22.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16867,12,12,'2023-02-09 10:46:31',22.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16868,12,12,'2023-02-09 10:46:31',23.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16869,12,12,'2023-02-09 10:46:31',23.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16870,12,12,'2023-02-09 10:46:31',23.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16871,12,12,'2023-02-09 10:46:31',23.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16872,12,12,'2023-02-09 10:46:31',24.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16873,12,12,'2023-02-09 10:46:31',24.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16874,12,12,'2023-02-09 10:46:31',24.977623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16875,12,12,'2023-02-09 10:46:31',24.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16876,12,12,'2023-02-09 10:46:31',25.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16877,12,12,'2023-02-09 10:46:31',25.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16878,12,12,'2023-02-09 10:46:31',25.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16879,12,12,'2023-02-09 10:46:31',26.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16880,12,12,'2023-02-09 10:46:31',26.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16881,12,12,'2023-02-09 10:46:31',26.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16882,12,12,'2023-02-09 10:46:31',27.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16883,12,12,'2023-02-09 10:46:31',27.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16884,12,12,'2023-02-09 10:46:31',27.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16885,12,12,'2023-02-09 10:46:31',27.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16886,12,12,'2023-02-09 10:46:31',28.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16887,12,12,'2023-02-09 10:46:31',28.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16888,12,12,'2023-02-09 10:46:31',28.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16889,12,12,'2023-02-09 10:46:31',28.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16890,12,12,'2023-02-09 10:46:31',29.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16891,12,12,'2023-02-09 10:46:31',29.068619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16892,12,12,'2023-02-09 10:46:31',29.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16893,12,12,'2023-02-09 10:46:31',29.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16894,12,12,'2023-02-09 10:46:31',30.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16895,12,12,'2023-02-09 10:46:31',30.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16896,12,12,'2023-02-09 10:46:31',30.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16897,12,12,'2023-02-09 10:46:31',30.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16898,12,12,'2023-02-09 10:46:31',31.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16899,12,12,'2023-02-09 10:46:31',31.105622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16900,12,12,'2023-02-09 10:46:31',31.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16901,12,12,'2023-02-09 10:46:31',31.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16902,12,12,'2023-02-09 10:46:31',32.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16903,12,12,'2023-02-09 10:46:31',32.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16904,12,12,'2023-02-09 10:46:31',32.545617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16905,12,12,'2023-02-09 10:46:31',32.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16906,12,12,'2023-02-09 10:46:31',33.138623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16907,12,12,'2023-02-09 10:46:31',33.149627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16908,12,12,'2023-02-09 10:46:31',33.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16909,12,12,'2023-02-09 10:46:31',33.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16910,12,12,'2023-02-09 10:46:31',34.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16911,12,12,'2023-02-09 10:46:31',34.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16912,12,12,'2023-02-09 10:46:31',34.585618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16913,12,12,'2023-02-09 10:46:31',34.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16914,12,12,'2023-02-09 10:46:31',35.177618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16915,12,12,'2023-02-09 10:46:31',35.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16916,12,12,'2023-02-09 10:46:31',35.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16917,12,12,'2023-02-09 10:46:31',35.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16918,12,12,'2023-02-09 10:46:31',36.194621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16919,12,12,'2023-02-09 10:46:31',36.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16920,12,12,'2023-02-09 10:46:31',36.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16921,12,12,'2023-02-09 10:46:31',36.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16922,12,12,'2023-02-09 10:46:31',37.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16923,12,12,'2023-02-09 10:46:31',37.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16924,12,12,'2023-02-09 10:46:31',37.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16925,12,12,'2023-02-09 10:46:31',37.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16926,12,12,'2023-02-09 10:46:31',38.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16927,12,12,'2023-02-09 10:46:31',38.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16928,12,12,'2023-02-09 10:46:31',38.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16929,12,12,'2023-02-09 10:46:31',38.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16930,12,12,'2023-02-09 10:46:31',39.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16931,12,12,'2023-02-09 10:46:31',39.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16932,12,12,'2023-02-09 10:46:31',39.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16933,12,12,'2023-02-09 10:46:31',39.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16934,12,12,'2023-02-09 10:46:31',40.278616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16935,12,12,'2023-02-09 10:46:31',40.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16936,12,12,'2023-02-09 10:46:31',40.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16937,12,12,'2023-02-09 10:46:31',40.738994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16938,12,12,'2023-02-09 10:46:31',41.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16939,12,12,'2023-02-09 10:46:31',41.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16940,12,12,'2023-02-09 10:46:31',41.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16941,12,12,'2023-02-09 10:46:31',41.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16942,12,12,'2023-02-09 10:46:31',42.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16943,12,12,'2023-02-09 10:46:31',42.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16944,12,12,'2023-02-09 10:46:31',42.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16945,12,12,'2023-02-09 10:46:31',42.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16946,12,12,'2023-02-09 10:46:31',43.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16947,12,12,'2023-02-09 10:46:31',43.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16948,12,12,'2023-02-09 10:46:31',43.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16949,12,12,'2023-02-09 10:46:31',43.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16950,12,12,'2023-02-09 10:46:31',44.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16951,12,12,'2023-02-09 10:46:31',44.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16952,12,12,'2023-02-09 10:46:31',44.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16953,12,12,'2023-02-09 10:46:31',44.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16954,12,12,'2023-02-09 10:46:31',45.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16955,12,12,'2023-02-09 10:46:31',45.389623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16956,12,12,'2023-02-09 10:46:31',45.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16957,12,12,'2023-02-09 10:46:31',45.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16958,12,12,'2023-02-09 10:46:31',46.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16959,12,12,'2023-02-09 10:46:31',46.406626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16960,12,12,'2023-02-09 10:46:31',46.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16961,12,12,'2023-02-09 10:46:31',46.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16962,12,12,'2023-02-09 10:46:31',47.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16963,12,12,'2023-02-09 10:46:31',47.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16964,12,12,'2023-02-09 10:46:31',47.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16965,12,12,'2023-02-09 10:46:31',47.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16966,12,12,'2023-02-09 10:46:31',48.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16967,12,12,'2023-02-09 10:46:31',48.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16968,12,12,'2023-02-09 10:46:31',48.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16969,12,12,'2023-02-09 10:46:31',48.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16970,12,12,'2023-02-09 10:46:31',49.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16971,12,12,'2023-02-09 10:46:31',49.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16972,12,12,'2023-02-09 10:46:31',49.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16973,12,12,'2023-02-09 10:46:31',49.940996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16974,12,12,'2023-02-09 10:46:31',50.478621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16975,12,12,'2023-02-09 10:46:31',50.489625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16976,12,12,'2023-02-09 10:46:31',50.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16977,12,12,'2023-02-09 10:46:31',50.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16978,12,12,'2023-02-09 10:46:31',51.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16979,12,12,'2023-02-09 10:46:31',51.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16980,12,12,'2023-02-09 10:46:31',51.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16981,12,12,'2023-02-09 10:46:31',51.958999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16982,12,12,'2023-02-09 10:46:31',52.517616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16983,12,12,'2023-02-09 10:46:31',52.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16984,12,12,'2023-02-09 10:46:31',52.945617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16985,12,12,'2023-02-09 10:46:31',52.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16986,12,12,'2023-02-09 10:46:31',53.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16987,12,12,'2023-02-09 10:46:31',53.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16988,12,12,'2023-02-09 10:46:31',53.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16989,12,12,'2023-02-09 10:46:31',53.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16990,12,12,'2023-02-09 10:46:31',54.556622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16991,12,12,'2023-02-09 10:46:31',54.567625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16992,12,12,'2023-02-09 10:46:31',54.985618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16993,12,12,'2023-02-09 10:46:31',55.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16994,12,12,'2023-02-09 10:46:31',55.577618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16995,12,12,'2023-02-09 10:46:31',55.588622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16996,12,12,'2023-02-09 10:46:31',56.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16997,12,12,'2023-02-09 10:46:31',56.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16998,12,12,'2023-02-09 10:46:31',56.595617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16999,12,12,'2023-02-09 10:46:31',56.606621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17000,12,12,'2023-02-09 10:46:31',57.025619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17001,12,12,'2023-02-09 10:46:31',57.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17002,12,12,'2023-02-09 10:46:31',57.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17003,12,12,'2023-02-09 10:46:31',57.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17004,12,12,'2023-02-09 10:46:31',58.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17005,12,12,'2023-02-09 10:46:31',58.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17006,12,12,'2023-02-09 10:46:31',58.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17007,12,12,'2023-02-09 10:46:31',58.645626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17008,12,12,'2023-02-09 10:46:31',59.065620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17009,12,12,'2023-02-09 10:46:31',59.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17010,12,12,'2023-02-09 10:46:31',59.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17011,12,12,'2023-02-09 10:46:31',59.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17012,12,12,'2023-02-09 10:46:31',60.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17013,12,12,'2023-02-09 10:46:31',60.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17014,12,12,'2023-02-09 10:46:31',60.678626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17015,12,12,'2023-02-09 10:46:31',60.689620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17016,12,12,'2023-02-09 10:46:31',61.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17017,12,12,'2023-02-09 10:46:31',61.161001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17018,12,12,'2023-02-09 10:46:31',61.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17019,12,12,'2023-02-09 10:46:31',61.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17020,12,12,'2023-02-09 10:46:31',62.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17021,12,12,'2023-02-09 10:46:31',62.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17022,12,12,'2023-02-09 10:46:31',62.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17023,12,12,'2023-02-09 10:46:31',62.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17024,12,12,'2023-02-09 10:46:31',63.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17025,12,12,'2023-02-09 10:46:31',63.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17026,12,12,'2023-02-09 10:46:31',63.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17027,12,12,'2023-02-09 10:46:31',63.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17028,12,12,'2023-02-09 10:46:31',64.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17029,12,12,'2023-02-09 10:46:31',64.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17030,12,12,'2023-02-09 10:46:31',64.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17031,12,12,'2023-02-09 10:46:31',64.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17032,12,12,'2023-02-09 10:46:31',65.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17033,12,12,'2023-02-09 10:46:31',65.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17034,12,12,'2023-02-09 10:46:31',65.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17035,12,12,'2023-02-09 10:46:31',65.785619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17036,12,12,'2023-02-09 10:46:31',66.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17037,12,12,'2023-02-09 10:46:31',66.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17038,12,12,'2023-02-09 10:46:31',66.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17039,12,12,'2023-02-09 10:46:31',66.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17040,12,12,'2023-02-09 10:46:31',67.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17041,12,12,'2023-02-09 10:46:31',67.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17042,12,12,'2023-02-09 10:46:31',67.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17043,12,12,'2023-02-09 10:46:31',67.829624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17044,12,12,'2023-02-09 10:46:31',68.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17045,12,12,'2023-02-09 10:46:31',68.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17046,12,12,'2023-02-09 10:46:31',68.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17047,12,12,'2023-02-09 10:46:31',68.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17048,12,12,'2023-02-09 10:46:31',69.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17049,12,12,'2023-02-09 10:46:31',69.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17050,12,12,'2023-02-09 10:46:31',69.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17051,12,12,'2023-02-09 10:46:31',69.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17052,12,12,'2023-02-09 10:46:31',70.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17053,12,12,'2023-02-09 10:46:31',70.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17054,12,12,'2023-02-09 10:46:31',70.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17055,12,12,'2023-02-09 10:46:31',70.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17056,12,12,'2023-02-09 10:46:31',71.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17057,12,12,'2023-02-09 10:46:31',71.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17058,12,12,'2023-02-09 10:46:31',71.896620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17059,12,12,'2023-02-09 10:46:31',71.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17060,12,12,'2023-02-09 10:46:31',72.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17061,12,12,'2023-02-09 10:46:31',72.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17062,12,12,'2023-02-09 10:46:31',72.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17063,12,12,'2023-02-09 10:46:31',72.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17064,12,12,'2023-02-09 10:46:31',73.345617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17065,12,12,'2023-02-09 10:46:31',73.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17066,12,12,'2023-02-09 10:46:31',73.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17067,12,12,'2023-02-09 10:46:31',73.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17068,12,12,'2023-02-09 10:46:31',74.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17069,12,12,'2023-02-09 10:46:31',74.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17070,12,12,'2023-02-09 10:46:31',74.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17071,12,12,'2023-02-09 10:46:31',74.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17072,12,12,'2023-02-09 10:46:31',75.385618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17073,12,12,'2023-02-09 10:46:31',75.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17074,12,12,'2023-02-09 10:46:31',75.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17075,12,12,'2023-02-09 10:46:31',75.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17076,12,12,'2023-02-09 10:46:31',76.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17077,12,12,'2023-02-09 10:46:31',76.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17078,12,12,'2023-02-09 10:46:31',76.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17079,12,12,'2023-02-09 10:46:31',77.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17080,12,12,'2023-02-09 10:46:31',77.425619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17081,12,12,'2023-02-09 10:46:31',77.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17082,12,12,'2023-02-09 10:46:31',78.018625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17083,12,12,'2023-02-09 10:46:31',78.029618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17084,12,12,'2023-02-09 10:46:31',78.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17085,12,12,'2023-02-09 10:46:31',78.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17086,12,12,'2023-02-09 10:46:31',79.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17087,12,12,'2023-02-09 10:46:31',79.047617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17088,12,12,'2023-02-09 10:46:31',79.465620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17089,12,12,'2023-02-09 10:46:31',79.521000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17090,12,12,'2023-02-09 10:46:31',80.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17091,12,12,'2023-02-09 10:46:31',80.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17092,12,12,'2023-02-09 10:46:31',80.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17093,12,12,'2023-02-09 10:46:31',80.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17094,12,12,'2023-02-09 10:46:31',81.075619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17095,12,12,'2023-02-09 10:46:31',81.086623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17096,12,12,'2023-02-09 10:46:31',81.505621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17097,12,12,'2023-02-09 10:46:31',81.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17098,12,12,'2023-02-09 10:46:31',82.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17099,12,12,'2023-02-09 10:46:31',82.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17100,12,12,'2023-02-09 10:46:31',82.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17101,12,12,'2023-02-09 10:46:31',82.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17102,12,12,'2023-02-09 10:46:31',83.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17103,12,12,'2023-02-09 10:46:31',83.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17104,12,12,'2023-02-09 10:46:31',83.545622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17105,12,12,'2023-02-09 10:46:31',83.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17106,12,12,'2023-02-09 10:46:31',84.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17107,12,12,'2023-02-09 10:46:31',84.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17108,12,12,'2023-02-09 10:46:31',84.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17109,12,12,'2023-02-09 10:46:31',84.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17110,12,12,'2023-02-09 10:46:31',85.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17111,12,12,'2023-02-09 10:46:31',85.168626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17112,12,12,'2023-02-09 10:46:31',85.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17113,12,12,'2023-02-09 10:46:31',85.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17114,12,12,'2023-02-09 10:46:31',86.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17115,12,12,'2023-02-09 10:46:31',86.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17116,12,12,'2023-02-09 10:46:31',86.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17117,12,12,'2023-02-09 10:46:31',86.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17118,12,12,'2023-02-09 10:46:31',87.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17119,12,12,'2023-02-09 10:46:31',87.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17120,12,12,'2023-02-09 10:46:31',87.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17121,12,12,'2023-02-09 10:46:31',87.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17122,12,12,'2023-02-09 10:46:31',88.214617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17123,12,12,'2023-02-09 10:46:31',88.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17124,12,12,'2023-02-09 10:46:31',88.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17125,12,12,'2023-02-09 10:46:31',88.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17126,12,12,'2023-02-09 10:46:31',89.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17127,12,12,'2023-02-09 10:46:31',89.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17128,12,12,'2023-02-09 10:46:31',89.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17129,12,12,'2023-02-09 10:46:31',89.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17130,12,12,'2023-02-09 10:46:31',90.254618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17131,12,12,'2023-02-09 10:46:31',90.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17132,12,12,'2023-02-09 10:46:31',90.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17133,12,12,'2023-02-09 10:46:31',90.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17134,12,12,'2023-02-09 10:46:31',91.275624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17135,12,12,'2023-02-09 10:46:31',91.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17136,12,12,'2023-02-09 10:46:31',91.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17137,12,12,'2023-02-09 10:46:31',91.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17138,12,12,'2023-02-09 10:46:31',92.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17139,12,12,'2023-02-09 10:46:31',92.309626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17140,12,12,'2023-02-09 10:46:31',92.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17141,12,12,'2023-02-09 10:46:31',92.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17142,12,12,'2023-02-09 10:46:31',93.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17143,12,12,'2023-02-09 10:46:31',93.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17144,12,12,'2023-02-09 10:46:31',93.745617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17145,12,12,'2023-02-09 10:46:31',93.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17146,12,12,'2023-02-09 10:46:31',94.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17147,12,12,'2023-02-09 10:46:31',94.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17148,12,12,'2023-02-09 10:46:31',94.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17149,12,12,'2023-02-09 10:46:31',94.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17150,12,12,'2023-02-09 10:46:31',95.358623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17151,12,12,'2023-02-09 10:46:31',95.369617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17152,12,12,'2023-02-09 10:46:31',95.785618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17153,12,12,'2023-02-09 10:46:31',95.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17154,12,12,'2023-02-09 10:46:31',96.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17155,12,12,'2023-02-09 10:46:31',96.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17156,12,12,'2023-02-09 10:46:31',96.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17157,12,12,'2023-02-09 10:46:31',96.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17158,12,12,'2023-02-09 10:46:31',97.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17159,12,12,'2023-02-09 10:46:31',97.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17160,12,12,'2023-02-09 10:46:31',97.825619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17161,12,12,'2023-02-09 10:46:31',97.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17162,12,12,'2023-02-09 10:46:31',98.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17163,12,12,'2023-02-09 10:46:31',98.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17164,12,12,'2023-02-09 10:46:31',98.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17165,12,12,'2023-02-09 10:46:31',98.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17166,12,12,'2023-02-09 10:46:31',99.436624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17167,12,12,'2023-02-09 10:46:31',99.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17168,12,12,'2023-02-09 10:46:31',99.865620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17169,12,12,'2023-02-09 10:46:31',99.921000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17170,12,12,'2023-02-09 10:46:31',100.454623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17171,12,12,'2023-02-09 10:46:31',100.465616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17172,12,12,'2023-02-09 10:46:31',100.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17173,12,12,'2023-02-09 10:46:31',100.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17174,12,12,'2023-02-09 10:46:31',101.475619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17175,12,12,'2023-02-09 10:46:31',101.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17176,12,12,'2023-02-09 10:46:31',101.905621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17177,12,12,'2023-02-09 10:46:31',101.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17178,12,12,'2023-02-09 10:46:31',102.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17179,12,12,'2023-02-09 10:46:31',102.508625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17180,12,12,'2023-02-09 10:46:31',102.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17181,12,12,'2023-02-09 10:46:31',102.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17182,12,12,'2023-02-09 10:46:31',103.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17183,12,12,'2023-02-09 10:46:31',103.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17184,12,12,'2023-02-09 10:46:31',103.945622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17185,12,12,'2023-02-09 10:46:31',103.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17186,12,12,'2023-02-09 10:46:31',104.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17187,12,12,'2023-02-09 10:46:31',104.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17188,12,12,'2023-02-09 10:46:31',104.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17189,12,12,'2023-02-09 10:46:31',104.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17190,12,12,'2023-02-09 10:46:31',105.558618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17191,12,12,'2023-02-09 10:46:31',105.569622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17192,12,12,'2023-02-09 10:46:31',105.985623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17193,12,12,'2023-02-09 10:46:31',106.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17194,12,12,'2023-02-09 10:46:31',106.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17195,12,12,'2023-02-09 10:46:31',106.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17196,12,12,'2023-02-09 10:46:31',107.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17197,12,12,'2023-02-09 10:46:31',107.026001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17198,12,12,'2023-02-09 10:46:31',107.594626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17199,12,12,'2023-02-09 10:46:31',107.605620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17200,12,12,'2023-02-09 10:46:31',108.025624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17201,12,12,'2023-02-09 10:46:31',108.080994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17202,12,12,'2023-02-09 10:46:31',108.615622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17203,12,12,'2023-02-09 10:46:31',108.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17204,12,12,'2023-02-09 10:46:31',109.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17205,12,12,'2023-02-09 10:46:31',109.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17206,12,12,'2023-02-09 10:46:31',109.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17207,12,12,'2023-02-09 10:46:31',109.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17208,12,12,'2023-02-09 10:46:31',110.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17209,12,12,'2023-02-09 10:46:31',110.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17210,12,12,'2023-02-09 10:46:31',110.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17211,12,12,'2023-02-09 10:46:31',110.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17212,12,12,'2023-02-09 10:46:31',111.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17213,12,12,'2023-02-09 10:46:31',111.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17214,12,12,'2023-02-09 10:46:31',111.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17215,12,12,'2023-02-09 10:46:31',111.685622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17216,12,12,'2023-02-09 10:46:31',112.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17217,12,12,'2023-02-09 10:46:31',112.138999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17218,12,12,'2023-02-09 10:46:31',112.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17219,12,12,'2023-02-09 10:46:31',112.711617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17220,12,12,'2023-02-09 10:46:31',113.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17221,12,12,'2023-02-09 10:46:31',113.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17222,12,12,'2023-02-09 10:46:31',113.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17223,12,12,'2023-02-09 10:46:31',113.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17224,12,12,'2023-02-09 10:46:31',114.145627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17225,12,12,'2023-02-09 10:46:31',114.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17226,12,12,'2023-02-09 10:46:31',114.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17227,12,12,'2023-02-09 10:46:31',114.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17228,12,12,'2023-02-09 10:46:31',115.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17229,12,12,'2023-02-09 10:46:31',115.220998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17230,12,12,'2023-02-09 10:46:31',115.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17231,12,12,'2023-02-09 10:46:31',115.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17232,12,12,'2023-02-09 10:46:31',116.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17233,12,12,'2023-02-09 10:46:31',116.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17234,12,12,'2023-02-09 10:46:31',116.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17235,12,12,'2023-02-09 10:46:31',116.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17236,12,12,'2023-02-09 10:46:31',117.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17237,12,12,'2023-02-09 10:46:31',117.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17238,12,12,'2023-02-09 10:46:31',117.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17239,12,12,'2023-02-09 10:46:31',117.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17240,12,12,'2023-02-09 10:46:31',118.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17241,12,12,'2023-02-09 10:46:31',118.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17242,12,12,'2023-02-09 10:46:31',118.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17243,12,12,'2023-02-09 10:46:31',118.826621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17244,12,12,'2023-02-09 10:46:31',119.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17245,12,12,'2023-02-09 10:46:31',119.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17246,12,12,'2023-02-09 10:46:31',119.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17247,12,12,'2023-02-09 10:46:31',119.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17248,12,12,'2023-02-09 10:46:31',120.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17249,12,12,'2023-02-09 10:46:31',120.321000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17250,12,12,'2023-02-09 10:46:31',120.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17251,12,12,'2023-02-09 10:46:31',120.865626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17252,12,12,'2023-02-09 10:46:31',121.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17253,12,12,'2023-02-09 10:46:31',121.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17254,12,12,'2023-02-09 10:46:31',121.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17255,12,12,'2023-02-09 10:46:31',121.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17256,12,12,'2023-02-09 10:46:31',122.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17257,12,12,'2023-02-09 10:46:31',122.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17258,12,12,'2023-02-09 10:46:31',122.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17259,12,12,'2023-02-09 10:46:31',122.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17260,12,12,'2023-02-09 10:46:31',123.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17261,12,12,'2023-02-09 10:46:31',123.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17262,12,12,'2023-02-09 10:46:31',123.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17263,12,12,'2023-02-09 10:46:31',123.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17264,12,12,'2023-02-09 10:46:31',124.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17265,12,12,'2023-02-09 10:46:31',124.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17266,12,12,'2023-02-09 10:46:31',124.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17267,12,12,'2023-02-09 10:46:31',124.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17268,12,12,'2023-02-09 10:46:31',125.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17269,12,12,'2023-02-09 10:46:31',125.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17270,12,12,'2023-02-09 10:46:31',125.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17271,12,12,'2023-02-09 10:46:31',125.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17272,12,12,'2023-02-09 10:46:31',126.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17273,12,12,'2023-02-09 10:46:31',126.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17274,12,12,'2023-02-09 10:46:31',126.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17275,12,12,'2023-02-09 10:46:31',126.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17276,12,12,'2023-02-09 10:46:31',127.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17277,12,12,'2023-02-09 10:46:31',127.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17278,12,12,'2023-02-09 10:46:31',127.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17279,12,12,'2023-02-09 10:46:31',128.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17280,12,12,'2023-02-09 10:46:31',128.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17281,12,12,'2023-02-09 10:46:31',128.480994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17282,12,12,'2023-02-09 10:46:31',129.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17283,12,12,'2023-02-09 10:46:31',129.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17284,12,12,'2023-02-09 10:46:31',129.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17285,12,12,'2023-02-09 10:46:31',129.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17286,12,12,'2023-02-09 10:46:31',130.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17287,12,12,'2023-02-09 10:46:31',130.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17288,12,12,'2023-02-09 10:46:31',130.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17289,12,12,'2023-02-09 10:46:31',130.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17290,12,12,'2023-02-09 10:46:31',131.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17291,12,12,'2023-02-09 10:46:31',131.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17292,12,12,'2023-02-09 10:46:31',131.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17293,12,12,'2023-02-09 10:46:31',131.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17294,12,12,'2023-02-09 10:46:31',132.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17295,12,12,'2023-02-09 10:46:31',132.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17296,12,12,'2023-02-09 10:46:31',132.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17297,12,12,'2023-02-09 10:46:31',132.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17298,12,12,'2023-02-09 10:46:31',133.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17299,12,12,'2023-02-09 10:46:31',133.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17300,12,12,'2023-02-09 10:46:31',133.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17301,12,12,'2023-02-09 10:46:31',133.581993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17302,12,12,'2023-02-09 10:46:31',134.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17303,12,12,'2023-02-09 10:46:31',134.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17304,12,12,'2023-02-09 10:46:31',134.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17305,12,12,'2023-02-09 10:46:31',134.565995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17306,12,12,'2023-02-09 10:46:31',135.134620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17307,12,12,'2023-02-09 10:46:31',135.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17308,12,12,'2023-02-09 10:46:31',135.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17309,12,12,'2023-02-09 10:46:31',135.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17310,12,12,'2023-02-09 10:46:31',136.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17311,12,12,'2023-02-09 10:46:31',136.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17312,12,12,'2023-02-09 10:46:31',136.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17313,12,12,'2023-02-09 10:46:31',136.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17314,12,12,'2023-02-09 10:46:31',137.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17315,12,12,'2023-02-09 10:46:31',137.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17316,12,12,'2023-02-09 10:46:31',137.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17317,12,12,'2023-02-09 10:46:31',137.660999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17318,12,12,'2023-02-09 10:46:31',138.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17319,12,12,'2023-02-09 10:46:31',138.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17320,12,12,'2023-02-09 10:46:31',138.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17321,12,12,'2023-02-09 10:46:31',138.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17322,12,12,'2023-02-09 10:46:31',139.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17323,12,12,'2023-02-09 10:46:31',139.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17324,12,12,'2023-02-09 10:46:31',139.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17325,12,12,'2023-02-09 10:46:31',139.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17326,12,12,'2023-02-09 10:46:31',140.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17327,12,12,'2023-02-09 10:46:31',140.248623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17328,12,12,'2023-02-09 10:46:31',140.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17329,12,12,'2023-02-09 10:46:31',140.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17330,12,12,'2023-02-09 10:46:31',141.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17331,12,12,'2023-02-09 10:46:31',141.266622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17332,12,12,'2023-02-09 10:46:31',141.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17333,12,12,'2023-02-09 10:46:31',141.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17334,12,12,'2023-02-09 10:46:31',142.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17335,12,12,'2023-02-09 10:46:31',142.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17336,12,12,'2023-02-09 10:46:31',142.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17337,12,12,'2023-02-09 10:46:31',142.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17338,12,12,'2023-02-09 10:46:31',143.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17339,12,12,'2023-02-09 10:46:31',143.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17340,12,12,'2023-02-09 10:46:31',143.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17341,12,12,'2023-02-09 10:46:31',143.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17342,12,12,'2023-02-09 10:46:31',144.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17343,12,12,'2023-02-09 10:46:31',144.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17344,12,12,'2023-02-09 10:46:31',144.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17345,12,12,'2023-02-09 10:46:31',144.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17346,12,12,'2023-02-09 10:46:31',145.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17347,12,12,'2023-02-09 10:46:31',145.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17348,12,12,'2023-02-09 10:46:31',145.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17349,12,12,'2023-02-09 10:46:31',145.820993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17350,12,12,'2023-02-09 10:46:31',146.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17351,12,12,'2023-02-09 10:46:31',146.367620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17352,12,12,'2023-02-09 10:46:31',146.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17353,12,12,'2023-02-09 10:46:31',146.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17354,12,12,'2023-02-09 10:46:31',147.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17355,12,12,'2023-02-09 10:46:31',147.388617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17356,12,12,'2023-02-09 10:46:31',147.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17357,12,12,'2023-02-09 10:46:31',147.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17358,12,12,'2023-02-09 10:46:31',148.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17359,12,12,'2023-02-09 10:46:31',148.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17360,12,12,'2023-02-09 10:46:31',148.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17361,12,12,'2023-02-09 10:46:31',148.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17362,12,12,'2023-02-09 10:46:31',149.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17363,12,12,'2023-02-09 10:46:31',149.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17364,12,12,'2023-02-09 10:46:31',149.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17365,12,12,'2023-02-09 10:46:31',149.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17366,12,12,'2023-02-09 10:46:31',150.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17367,12,12,'2023-02-09 10:46:31',150.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17368,12,12,'2023-02-09 10:46:31',150.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17369,12,12,'2023-02-09 10:46:31',150.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17370,12,12,'2023-02-09 10:46:31',151.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17371,12,12,'2023-02-09 10:46:31',151.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17372,12,12,'2023-02-09 10:46:31',151.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17373,12,12,'2023-02-09 10:46:31',151.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17374,12,12,'2023-02-09 10:46:31',152.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17375,12,12,'2023-02-09 10:46:31',152.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17376,12,12,'2023-02-09 10:46:31',152.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17377,12,12,'2023-02-09 10:46:31',152.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17378,12,12,'2023-02-09 10:46:31',153.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17379,12,12,'2023-02-09 10:46:31',153.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17380,12,12,'2023-02-09 10:46:31',153.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17381,12,12,'2023-02-09 10:46:31',153.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17382,12,12,'2023-02-09 10:46:31',154.517626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17383,12,12,'2023-02-09 10:46:31',154.528620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17384,12,12,'2023-02-09 10:46:31',154.945627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17385,12,12,'2023-02-09 10:46:31',154.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17386,12,12,'2023-02-09 10:46:31',155.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17387,12,12,'2023-02-09 10:46:31',155.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17388,12,12,'2023-02-09 10:46:31',155.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17389,12,12,'2023-02-09 10:46:31',155.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17390,12,12,'2023-02-09 10:46:31',156.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17391,12,12,'2023-02-09 10:46:31',156.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17392,12,12,'2023-02-09 10:46:31',156.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17393,12,12,'2023-02-09 10:46:31',157.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17394,12,12,'2023-02-09 10:46:31',157.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17395,12,12,'2023-02-09 10:46:31',157.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17396,12,12,'2023-02-09 10:46:31',158.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17397,12,12,'2023-02-09 10:46:31',158.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17398,12,12,'2023-02-09 10:46:31',158.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17399,12,12,'2023-02-09 10:46:31',158.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17400,12,12,'2023-02-09 10:46:31',159.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17401,12,12,'2023-02-09 10:46:31',159.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17402,12,12,'2023-02-09 10:46:31',159.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17403,12,12,'2023-02-09 10:46:31',159.630624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17404,12,12,'2023-02-09 10:46:31',160.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17405,12,12,'2023-02-09 10:46:31',160.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17406,12,12,'2023-02-09 10:46:31',160.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17407,12,12,'2023-02-09 10:46:31',160.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17408,12,12,'2023-02-09 10:46:31',161.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17409,12,12,'2023-02-09 10:46:31',161.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17410,12,12,'2023-02-09 10:46:31',161.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17411,12,12,'2023-02-09 10:46:31',161.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17412,12,12,'2023-02-09 10:46:31',162.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17413,12,12,'2023-02-09 10:46:31',162.105998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17414,12,12,'2023-02-09 10:46:31',162.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17415,12,12,'2023-02-09 10:46:31',162.687618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17416,12,12,'2023-02-09 10:46:31',163.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17417,12,12,'2023-02-09 10:46:31',163.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17418,12,12,'2023-02-09 10:46:31',163.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17419,12,12,'2023-02-09 10:46:31',163.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17420,12,12,'2023-02-09 10:46:31',164.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17421,12,12,'2023-02-09 10:46:31',164.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17422,12,12,'2023-02-09 10:46:31',164.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17423,12,12,'2023-02-09 10:46:31',164.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17424,12,12,'2023-02-09 10:46:31',165.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17425,12,12,'2023-02-09 10:46:31',165.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17426,12,12,'2023-02-09 10:46:31',165.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17427,12,12,'2023-02-09 10:46:31',165.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17428,12,12,'2023-02-09 10:46:31',166.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17429,12,12,'2023-02-09 10:46:31',166.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17430,12,12,'2023-02-09 10:46:31',166.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17431,12,12,'2023-02-09 10:46:31',166.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17432,12,12,'2023-02-09 10:46:31',167.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17433,12,12,'2023-02-09 10:46:31',167.206001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17434,12,12,'2023-02-09 10:46:31',167.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17435,12,12,'2023-02-09 10:46:31',167.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17436,12,12,'2023-02-09 10:46:31',168.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17437,12,12,'2023-02-09 10:46:31',168.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17438,12,12,'2023-02-09 10:46:31',168.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17439,12,12,'2023-02-09 10:46:31',168.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17440,12,12,'2023-02-09 10:46:31',169.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17441,12,12,'2023-02-09 10:46:31',169.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17442,12,12,'2023-02-09 10:46:31',169.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17443,12,12,'2023-02-09 10:46:31',169.830619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17444,12,12,'2023-02-09 10:46:31',170.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17445,12,12,'2023-02-09 10:46:31',170.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17446,12,12,'2023-02-09 10:46:31',170.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17447,12,12,'2023-02-09 10:46:31',170.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17448,12,12,'2023-02-09 10:46:31',171.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17449,12,12,'2023-02-09 10:46:31',171.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17450,12,12,'2023-02-09 10:46:31',171.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17451,12,12,'2023-02-09 10:46:31',171.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17452,12,12,'2023-02-09 10:46:31',172.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17453,12,12,'2023-02-09 10:46:31',172.318998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17454,12,12,'2023-02-09 10:46:31',172.878621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17455,12,12,'2023-02-09 10:46:31',172.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17456,12,12,'2023-02-09 10:46:31',173.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17457,12,12,'2023-02-09 10:46:31',173.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17458,12,12,'2023-02-09 10:46:31',173.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17459,12,12,'2023-02-09 10:46:31',173.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17460,12,12,'2023-02-09 10:46:31',174.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17461,12,12,'2023-02-09 10:46:31',174.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17462,12,12,'2023-02-09 10:46:31',174.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17463,12,12,'2023-02-09 10:46:31',174.928620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17464,12,12,'2023-02-09 10:46:31',175.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17465,12,12,'2023-02-09 10:46:31',175.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17466,12,12,'2023-02-09 10:46:31',175.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17467,12,12,'2023-02-09 10:46:31',175.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17468,12,12,'2023-02-09 10:46:31',176.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17469,12,12,'2023-02-09 10:46:31',176.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17470,12,12,'2023-02-09 10:46:31',176.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17471,12,12,'2023-02-09 10:46:31',176.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17472,12,12,'2023-02-09 10:46:31',177.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17473,12,12,'2023-02-09 10:46:31',177.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17474,12,12,'2023-02-09 10:46:31',177.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17475,12,12,'2023-02-09 10:46:31',177.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17476,12,12,'2023-02-09 10:46:31',178.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17477,12,12,'2023-02-09 10:46:31',178.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17478,12,12,'2023-02-09 10:46:31',178.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17479,12,12,'2023-02-09 10:46:31',179.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17480,12,12,'2023-02-09 10:46:31',179.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17481,12,12,'2023-02-09 10:46:31',179.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17482,12,12,'2023-02-09 10:46:31',180.014622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17483,12,12,'2023-02-09 10:46:31',180.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17484,12,12,'2023-02-09 10:46:31',180.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17485,12,12,'2023-02-09 10:46:31',180.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17486,12,12,'2023-02-09 10:46:31',181.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17487,12,12,'2023-02-09 10:46:31',181.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17488,12,12,'2023-02-09 10:46:31',181.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17489,12,12,'2023-02-09 10:46:31',181.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17490,12,12,'2023-02-09 10:46:31',182.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17491,12,12,'2023-02-09 10:46:31',182.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17492,12,12,'2023-02-09 10:46:31',182.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17493,12,12,'2023-02-09 10:46:31',182.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17494,12,12,'2023-02-09 10:46:31',183.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17495,12,12,'2023-02-09 10:46:31',183.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17496,12,12,'2023-02-09 10:46:31',183.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17497,12,12,'2023-02-09 10:46:31',183.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17498,12,12,'2023-02-09 10:46:31',184.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17499,12,12,'2023-02-09 10:46:31',184.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17500,12,12,'2023-02-09 10:46:31',184.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17501,12,12,'2023-02-09 10:46:31',184.581002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17502,12,12,'2023-02-09 10:46:31',185.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17503,12,12,'2023-02-09 10:46:31',185.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17504,12,12,'2023-02-09 10:46:31',185.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17505,12,12,'2023-02-09 10:46:31',185.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17506,12,12,'2023-02-09 10:46:31',186.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17507,12,12,'2023-02-09 10:46:31',186.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17508,12,12,'2023-02-09 10:46:31',186.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17509,12,12,'2023-02-09 10:46:31',186.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17510,12,12,'2023-02-09 10:46:31',187.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17511,12,12,'2023-02-09 10:46:31',187.169622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17512,12,12,'2023-02-09 10:46:31',187.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17513,12,12,'2023-02-09 10:46:31',187.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17514,12,12,'2023-02-09 10:46:31',188.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17515,12,12,'2023-02-09 10:46:31',188.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17516,12,12,'2023-02-09 10:46:31',188.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17517,12,12,'2023-02-09 10:46:31',188.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17518,12,12,'2023-02-09 10:46:31',189.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17519,12,12,'2023-02-09 10:46:31',189.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17520,12,12,'2023-02-09 10:46:31',189.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17521,12,12,'2023-02-09 10:46:31',189.646002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17522,12,12,'2023-02-09 10:46:31',190.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17523,12,12,'2023-02-09 10:46:31',190.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17524,12,12,'2023-02-09 10:46:31',190.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17525,12,12,'2023-02-09 10:46:31',190.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17526,12,12,'2023-02-09 10:46:31',191.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17527,12,12,'2023-02-09 10:46:31',191.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17528,12,12,'2023-02-09 10:46:31',191.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17529,12,12,'2023-02-09 10:46:31',191.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17530,12,12,'2023-02-09 10:46:31',192.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17531,12,12,'2023-02-09 10:46:31',192.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17532,12,12,'2023-02-09 10:46:31',192.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17533,12,12,'2023-02-09 10:46:31',192.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17534,12,12,'2023-02-09 10:46:31',193.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17535,12,12,'2023-02-09 10:46:31',193.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17536,12,12,'2023-02-09 10:46:31',193.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17537,12,12,'2023-02-09 10:46:31',193.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17538,12,12,'2023-02-09 10:46:31',194.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17539,12,12,'2023-02-09 10:46:31',194.308620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17540,12,12,'2023-02-09 10:46:31',194.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17541,12,12,'2023-02-09 10:46:31',194.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17542,12,12,'2023-02-09 10:46:31',195.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17543,12,12,'2023-02-09 10:46:31',195.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17544,12,12,'2023-02-09 10:46:31',195.745627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17545,12,12,'2023-02-09 10:46:31',195.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17546,12,12,'2023-02-09 10:46:31',196.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17547,12,12,'2023-02-09 10:46:31',196.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17548,12,12,'2023-02-09 10:46:31',196.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17549,12,12,'2023-02-09 10:46:31',196.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17550,12,12,'2023-02-09 10:46:31',197.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17551,12,12,'2023-02-09 10:46:31',197.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17552,12,12,'2023-02-09 10:46:31',197.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17553,12,12,'2023-02-09 10:46:31',197.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17554,12,12,'2023-02-09 10:46:31',198.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17555,12,12,'2023-02-09 10:46:31',198.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17556,12,12,'2023-02-09 10:46:31',198.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17557,12,12,'2023-02-09 10:46:31',198.860999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17558,12,12,'2023-02-09 10:46:31',199.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17559,12,12,'2023-02-09 10:46:31',199.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17560,12,12,'2023-02-09 10:46:31',199.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17561,12,12,'2023-02-09 10:46:31',199.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17562,12,12,'2023-02-09 10:46:31',200.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17563,12,12,'2023-02-09 10:46:31',200.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17564,12,12,'2023-02-09 10:46:31',200.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17565,12,12,'2023-02-09 10:46:31',200.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17566,12,12,'2023-02-09 10:46:31',201.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17567,12,12,'2023-02-09 10:46:31',201.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17568,12,12,'2023-02-09 10:46:31',201.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17569,12,12,'2023-02-09 10:46:31',201.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17570,12,12,'2023-02-09 10:46:31',202.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17571,12,12,'2023-02-09 10:46:31',202.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17572,12,12,'2023-02-09 10:46:31',202.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17573,12,12,'2023-02-09 10:46:31',202.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17574,12,12,'2023-02-09 10:46:31',203.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17575,12,12,'2023-02-09 10:46:31',203.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17576,12,12,'2023-02-09 10:46:31',203.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17577,12,12,'2023-02-09 10:46:31',203.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17578,12,12,'2023-02-09 10:46:31',204.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17579,12,12,'2023-02-09 10:46:31',204.509620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17580,12,12,'2023-02-09 10:46:31',204.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17581,12,12,'2023-02-09 10:46:31',204.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17582,12,12,'2023-02-09 10:46:31',205.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17583,12,12,'2023-02-09 10:46:31',205.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17584,12,12,'2023-02-09 10:46:31',205.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17585,12,12,'2023-02-09 10:46:31',206.001002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17586,12,12,'2023-02-09 10:46:31',206.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17587,12,12,'2023-02-09 10:46:31',206.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17588,12,12,'2023-02-09 10:46:31',206.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17589,12,12,'2023-02-09 10:46:31',206.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17590,12,12,'2023-02-09 10:46:31',207.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17591,12,12,'2023-02-09 10:46:31',207.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17592,12,12,'2023-02-09 10:46:31',207.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17593,12,12,'2023-02-09 10:46:31',208.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17594,12,12,'2023-02-09 10:46:31',208.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17595,12,12,'2023-02-09 10:46:31',208.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17596,12,12,'2023-02-09 10:46:31',209.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17597,12,12,'2023-02-09 10:46:31',209.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17598,12,12,'2023-02-09 10:46:31',209.595622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17599,12,12,'2023-02-09 10:46:31',209.606626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17600,12,12,'2023-02-09 10:46:31',210.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17601,12,12,'2023-02-09 10:46:31',210.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17602,12,12,'2023-02-09 10:46:31',210.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17603,12,12,'2023-02-09 10:46:31',210.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17604,12,12,'2023-02-09 10:46:31',211.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17605,12,12,'2023-02-09 10:46:31',211.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17606,12,12,'2023-02-09 10:46:31',211.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17607,12,12,'2023-02-09 10:46:31',211.649624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17608,12,12,'2023-02-09 10:46:31',212.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17609,12,12,'2023-02-09 10:46:31',212.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17610,12,12,'2023-02-09 10:46:31',212.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17611,12,12,'2023-02-09 10:46:31',212.665621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17612,12,12,'2023-02-09 10:46:31',213.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17613,12,12,'2023-02-09 10:46:31',213.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17614,12,12,'2023-02-09 10:46:31',213.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17615,12,12,'2023-02-09 10:46:31',213.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17616,12,12,'2023-02-09 10:46:31',214.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17617,12,12,'2023-02-09 10:46:31',214.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17618,12,12,'2023-02-09 10:46:31',214.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17619,12,12,'2023-02-09 10:46:31',214.709625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17620,12,12,'2023-02-09 10:46:31',215.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17621,12,12,'2023-02-09 10:46:31',215.180997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17622,12,12,'2023-02-09 10:46:31',215.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17623,12,12,'2023-02-09 10:46:31',215.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17624,12,12,'2023-02-09 10:46:31',216.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17625,12,12,'2023-02-09 10:46:31',216.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17626,12,12,'2023-02-09 10:46:31',216.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17627,12,12,'2023-02-09 10:46:31',216.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17628,12,12,'2023-02-09 10:46:31',217.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17629,12,12,'2023-02-09 10:46:31',217.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17630,12,12,'2023-02-09 10:46:31',217.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17631,12,12,'2023-02-09 10:46:31',217.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17632,12,12,'2023-02-09 10:46:31',218.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17633,12,12,'2023-02-09 10:46:31',218.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17634,12,12,'2023-02-09 10:46:31',218.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17635,12,12,'2023-02-09 10:46:31',218.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17636,12,12,'2023-02-09 10:46:31',219.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17637,12,12,'2023-02-09 10:46:31',219.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17638,12,12,'2023-02-09 10:46:31',219.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17639,12,12,'2023-02-09 10:46:31',219.806621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17640,12,12,'2023-02-09 10:46:31',220.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17641,12,12,'2023-02-09 10:46:31',220.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17642,12,12,'2023-02-09 10:46:31',220.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17643,12,12,'2023-02-09 10:46:31',220.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17644,12,12,'2023-02-09 10:46:31',221.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17645,12,12,'2023-02-09 10:46:31',221.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17646,12,12,'2023-02-09 10:46:31',221.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17647,12,12,'2023-02-09 10:46:31',221.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17648,12,12,'2023-02-09 10:46:31',222.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17649,12,12,'2023-02-09 10:46:31',222.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17650,12,12,'2023-02-09 10:46:31',222.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17651,12,12,'2023-02-09 10:46:31',222.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17652,12,12,'2023-02-09 10:46:31',223.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17653,12,12,'2023-02-09 10:46:31',223.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17654,12,12,'2023-02-09 10:46:31',223.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17655,12,12,'2023-02-09 10:46:31',223.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17656,12,12,'2023-02-09 10:46:31',224.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17657,12,12,'2023-02-09 10:46:31',224.361001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17658,12,12,'2023-02-09 10:46:31',224.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17659,12,12,'2023-02-09 10:46:31',224.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17660,12,12,'2023-02-09 10:46:31',225.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17661,12,12,'2023-02-09 10:46:31',225.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17662,12,12,'2023-02-09 10:46:31',225.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17663,12,12,'2023-02-09 10:46:31',225.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17664,12,12,'2023-02-09 10:46:31',226.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17665,12,12,'2023-02-09 10:46:31',226.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17666,12,12,'2023-02-09 10:46:31',226.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17667,12,12,'2023-02-09 10:46:31',226.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17668,12,12,'2023-02-09 10:46:31',227.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17669,12,12,'2023-02-09 10:46:31',227.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17670,12,12,'2023-02-09 10:46:31',227.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17671,12,12,'2023-02-09 10:46:31',227.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17672,12,12,'2023-02-09 10:46:31',228.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17673,12,12,'2023-02-09 10:46:31',228.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17674,12,12,'2023-02-09 10:46:31',228.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17675,12,12,'2023-02-09 10:46:31',228.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17676,12,12,'2023-02-09 10:46:31',229.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17677,12,12,'2023-02-09 10:46:31',229.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17678,12,12,'2023-02-09 10:46:31',229.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17679,12,12,'2023-02-09 10:46:31',230.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17680,12,12,'2023-02-09 10:46:31',230.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17681,12,12,'2023-02-09 10:46:31',230.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17682,12,12,'2023-02-09 10:46:31',231.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17683,12,12,'2023-02-09 10:46:31',231.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17684,12,12,'2023-02-09 10:46:31',231.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17685,12,12,'2023-02-09 10:46:31',231.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17686,12,12,'2023-02-09 10:46:31',232.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17687,12,12,'2023-02-09 10:46:31',232.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17688,12,12,'2023-02-09 10:46:31',232.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17689,12,12,'2023-02-09 10:46:31',232.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17690,12,12,'2023-02-09 10:46:31',233.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17691,12,12,'2023-02-09 10:46:31',233.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17692,12,12,'2023-02-09 10:46:31',233.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17693,12,12,'2023-02-09 10:46:31',233.505993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17694,12,12,'2023-02-09 10:46:31',234.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17695,12,12,'2023-02-09 10:46:31',234.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17696,12,12,'2023-02-09 10:46:31',234.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17697,12,12,'2023-02-09 10:46:31',234.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17698,12,12,'2023-02-09 10:46:31',235.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17699,12,12,'2023-02-09 10:46:31',235.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17700,12,12,'2023-02-09 10:46:31',235.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17701,12,12,'2023-02-09 10:46:31',235.580997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17702,12,12,'2023-02-09 10:46:31',236.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17703,12,12,'2023-02-09 10:46:31',236.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17704,12,12,'2023-02-09 10:46:31',236.545627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17705,12,12,'2023-02-09 10:46:31',236.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17706,12,12,'2023-02-09 10:46:31',237.134619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17707,12,12,'2023-02-09 10:46:31',237.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17708,12,12,'2023-02-09 10:46:31',237.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17709,12,12,'2023-02-09 10:46:31',237.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17710,12,12,'2023-02-09 10:46:31',238.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17711,12,12,'2023-02-09 10:46:31',238.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17712,12,12,'2023-02-09 10:46:31',238.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17713,12,12,'2023-02-09 10:46:31',238.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17714,12,12,'2023-02-09 10:46:31',239.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17715,12,12,'2023-02-09 10:46:31',239.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17716,12,12,'2023-02-09 10:46:31',239.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17717,12,12,'2023-02-09 10:46:31',239.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17718,12,12,'2023-02-09 10:46:31',240.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17719,12,12,'2023-02-09 10:46:31',240.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17720,12,12,'2023-02-09 10:46:31',240.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17721,12,12,'2023-02-09 10:46:31',240.680999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17722,12,12,'2023-02-09 10:46:31',241.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17723,12,12,'2023-02-09 10:46:31',241.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17724,12,12,'2023-02-09 10:46:31',241.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17725,12,12,'2023-02-09 10:46:31',241.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17726,12,12,'2023-02-09 10:46:31',242.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17727,12,12,'2023-02-09 10:46:31',242.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17728,12,12,'2023-02-09 10:46:31',242.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17729,12,12,'2023-02-09 10:46:31',242.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17730,12,12,'2023-02-09 10:46:31',243.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17731,12,12,'2023-02-09 10:46:31',243.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17732,12,12,'2023-02-09 10:46:31',243.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17733,12,12,'2023-02-09 10:46:31',243.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17734,12,12,'2023-02-09 10:46:31',244.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17735,12,12,'2023-02-09 10:46:31',244.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17736,12,12,'2023-02-09 10:46:31',244.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17737,12,12,'2023-02-09 10:46:31',244.725999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17738,12,12,'2023-02-09 10:46:31',245.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17739,12,12,'2023-02-09 10:46:31',245.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17740,12,12,'2023-02-09 10:46:31',245.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17741,12,12,'2023-02-09 10:46:31',245.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17742,12,12,'2023-02-09 10:46:31',246.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17743,12,12,'2023-02-09 10:46:31',246.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17744,12,12,'2023-02-09 10:46:31',246.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17745,12,12,'2023-02-09 10:46:31',246.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17746,12,12,'2023-02-09 10:46:31',247.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17747,12,12,'2023-02-09 10:46:31',247.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17748,12,12,'2023-02-09 10:46:31',247.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17749,12,12,'2023-02-09 10:46:31',247.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17750,12,12,'2023-02-09 10:46:31',248.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17751,12,12,'2023-02-09 10:46:31',248.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17752,12,12,'2023-02-09 10:46:31',248.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17753,12,12,'2023-02-09 10:46:31',248.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17754,12,12,'2023-02-09 10:46:31',249.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17755,12,12,'2023-02-09 10:46:31',249.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17756,12,12,'2023-02-09 10:46:31',249.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17757,12,12,'2023-02-09 10:46:31',249.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17758,12,12,'2023-02-09 10:46:31',250.399625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17759,12,12,'2023-02-09 10:46:31',250.413626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17760,12,12,'2023-02-09 10:46:31',250.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17761,12,12,'2023-02-09 10:46:31',250.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17762,12,12,'2023-02-09 10:46:31',251.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17763,12,12,'2023-02-09 10:46:31',251.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17764,12,12,'2023-02-09 10:46:31',251.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17765,12,12,'2023-02-09 10:46:31',251.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17766,12,12,'2023-02-09 10:46:31',252.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17767,12,12,'2023-02-09 10:46:31',252.446627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17768,12,12,'2023-02-09 10:46:31',252.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17769,12,12,'2023-02-09 10:46:31',252.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17770,12,12,'2023-02-09 10:46:31',253.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17771,12,12,'2023-02-09 10:46:31',253.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17772,12,12,'2023-02-09 10:46:31',253.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17773,12,12,'2023-02-09 10:46:31',253.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17774,12,12,'2023-02-09 10:46:31',254.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17775,12,12,'2023-02-09 10:46:31',254.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17776,12,12,'2023-02-09 10:46:31',254.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17777,12,12,'2023-02-09 10:46:31',254.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17778,12,12,'2023-02-09 10:46:31',255.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17779,12,12,'2023-02-09 10:46:31',255.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17780,12,12,'2023-02-09 10:46:31',255.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17781,12,12,'2023-02-09 10:46:31',255.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17782,12,12,'2023-02-09 10:46:31',256.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17783,12,12,'2023-02-09 10:46:31',256.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17784,12,12,'2023-02-09 10:46:31',256.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17785,12,12,'2023-02-09 10:46:31',257.000997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17786,12,12,'2023-02-09 10:46:31',257.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17787,12,12,'2023-02-09 10:46:31',257.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17788,12,12,'2023-02-09 10:46:31',257.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17789,12,12,'2023-02-09 10:46:31',257.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17790,12,12,'2023-02-09 10:46:31',258.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17791,12,12,'2023-02-09 10:46:31',258.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17792,12,12,'2023-02-09 10:46:31',258.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17793,12,12,'2023-02-09 10:46:32',259.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17794,12,12,'2023-02-09 10:46:32',259.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17795,12,12,'2023-02-09 10:46:32',259.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17796,12,12,'2023-02-09 10:46:32',260.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17797,12,12,'2023-02-09 10:46:32',260.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17798,12,12,'2023-02-09 10:46:32',260.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17799,12,12,'2023-02-09 10:46:32',260.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17800,12,12,'2023-02-09 10:46:32',261.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17801,12,12,'2023-02-09 10:46:32',261.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17802,12,12,'2023-02-09 10:46:32',261.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17803,12,12,'2023-02-09 10:46:32',261.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17804,12,12,'2023-02-09 10:46:32',262.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17805,12,12,'2023-02-09 10:46:32',262.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17806,12,12,'2023-02-09 10:46:32',262.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17807,12,12,'2023-02-09 10:46:32',262.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17808,12,12,'2023-02-09 10:46:32',263.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17809,12,12,'2023-02-09 10:46:32',263.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17810,12,12,'2023-02-09 10:46:32',263.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17811,12,12,'2023-02-09 10:46:32',263.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17812,12,12,'2023-02-09 10:46:32',264.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17813,12,12,'2023-02-09 10:46:32',264.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17814,12,12,'2023-02-09 10:46:32',264.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17815,12,12,'2023-02-09 10:46:32',264.686623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17816,12,12,'2023-02-09 10:46:32',265.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17817,12,12,'2023-02-09 10:46:32',265.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17818,12,12,'2023-02-09 10:46:32',265.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17819,12,12,'2023-02-09 10:46:32',265.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17820,12,12,'2023-02-09 10:46:32',266.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17821,12,12,'2023-02-09 10:46:32',266.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17822,12,12,'2023-02-09 10:46:32',266.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17823,12,12,'2023-02-09 10:46:32',266.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17824,12,12,'2023-02-09 10:46:32',267.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17825,12,12,'2023-02-09 10:46:32',267.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17826,12,12,'2023-02-09 10:46:32',267.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17827,12,12,'2023-02-09 10:46:32',267.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17828,12,12,'2023-02-09 10:46:32',268.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17829,12,12,'2023-02-09 10:46:32',268.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17830,12,12,'2023-02-09 10:46:32',268.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17831,12,12,'2023-02-09 10:46:32',268.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17832,12,12,'2023-02-09 10:46:32',269.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17833,12,12,'2023-02-09 10:46:32',269.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17834,12,12,'2023-02-09 10:46:32',269.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17835,12,12,'2023-02-09 10:46:32',269.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17836,12,12,'2023-02-09 10:46:32',270.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17837,12,12,'2023-02-09 10:46:32',270.260994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17838,12,12,'2023-02-09 10:46:32',270.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17839,12,12,'2023-02-09 10:46:32',270.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17840,12,12,'2023-02-09 10:46:32',271.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17841,12,12,'2023-02-09 10:46:32',271.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17842,12,12,'2023-02-09 10:46:32',271.814616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17843,12,12,'2023-02-09 10:46:32',271.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17844,12,12,'2023-02-09 10:46:32',272.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17845,12,12,'2023-02-09 10:46:32',272.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17846,12,12,'2023-02-09 10:46:32',272.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17847,12,12,'2023-02-09 10:46:32',272.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17848,12,12,'2023-02-09 10:46:32',273.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17849,12,12,'2023-02-09 10:46:32',273.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17850,12,12,'2023-02-09 10:46:32',273.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17851,12,12,'2023-02-09 10:46:32',273.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17852,12,12,'2023-02-09 10:46:32',274.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17853,12,12,'2023-02-09 10:46:32',274.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17854,12,12,'2023-02-09 10:46:32',274.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17855,12,12,'2023-02-09 10:46:32',274.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17856,12,12,'2023-02-09 10:46:32',275.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17857,12,12,'2023-02-09 10:46:32',275.360996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17858,12,12,'2023-02-09 10:46:32',275.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17859,12,12,'2023-02-09 10:46:32',275.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17860,12,12,'2023-02-09 10:46:32',276.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17861,12,12,'2023-02-09 10:46:32',276.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17862,12,12,'2023-02-09 10:46:32',276.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17863,12,12,'2023-02-09 10:46:32',276.929626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17864,12,12,'2023-02-09 10:46:32',277.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17865,12,12,'2023-02-09 10:46:32',277.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17866,12,12,'2023-02-09 10:46:32',277.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17867,12,12,'2023-02-09 10:46:32',277.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17868,12,12,'2023-02-09 10:46:32',278.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17869,12,12,'2023-02-09 10:46:32',278.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17870,12,12,'2023-02-09 10:46:32',278.954620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17871,12,12,'2023-02-09 10:46:32',278.965624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17872,12,12,'2023-02-09 10:46:32',279.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17873,12,12,'2023-02-09 10:46:32',279.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17874,12,12,'2023-02-09 10:46:32',279.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17875,12,12,'2023-02-09 10:46:32',279.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17876,12,12,'2023-02-09 10:46:32',280.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17877,12,12,'2023-02-09 10:46:32',280.460999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17878,12,12,'2023-02-09 10:46:32',280.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17879,12,12,'2023-02-09 10:46:32',281.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17880,12,12,'2023-02-09 10:46:32',281.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17881,12,12,'2023-02-09 10:46:32',281.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17882,12,12,'2023-02-09 10:46:32',282.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17883,12,12,'2023-02-09 10:46:32',282.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17884,12,12,'2023-02-09 10:46:32',282.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17885,12,12,'2023-02-09 10:46:32',282.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17886,12,12,'2023-02-09 10:46:32',283.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17887,12,12,'2023-02-09 10:46:32',283.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17888,12,12,'2023-02-09 10:46:32',283.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17889,12,12,'2023-02-09 10:46:32',283.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17890,12,12,'2023-02-09 10:46:32',284.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17891,12,12,'2023-02-09 10:46:32',284.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17892,12,12,'2023-02-09 10:46:32',284.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17893,12,12,'2023-02-09 10:46:32',284.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17894,12,12,'2023-02-09 10:46:32',285.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17895,12,12,'2023-02-09 10:46:32',285.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17896,12,12,'2023-02-09 10:46:32',285.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17897,12,12,'2023-02-09 10:46:32',285.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17898,12,12,'2023-02-09 10:46:32',286.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17899,12,12,'2023-02-09 10:46:32',286.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17900,12,12,'2023-02-09 10:46:32',286.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17901,12,12,'2023-02-09 10:46:32',286.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17902,12,12,'2023-02-09 10:46:32',287.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17903,12,12,'2023-02-09 10:46:32',287.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17904,12,12,'2023-02-09 10:46:32',287.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17905,12,12,'2023-02-09 10:46:32',287.601998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17906,12,12,'2023-02-09 10:46:32',288.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17907,12,12,'2023-02-09 10:46:32',288.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17908,12,12,'2023-02-09 10:46:32',288.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17909,12,12,'2023-02-09 10:46:32',288.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17910,12,12,'2023-02-09 10:46:32',289.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17911,12,12,'2023-02-09 10:46:32',289.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17912,12,12,'2023-02-09 10:46:32',289.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17913,12,12,'2023-02-09 10:46:32',289.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17914,12,12,'2023-02-09 10:46:32',290.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17915,12,12,'2023-02-09 10:46:32',290.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17916,12,12,'2023-02-09 10:46:32',290.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17917,12,12,'2023-02-09 10:46:32',290.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17918,12,12,'2023-02-09 10:46:32',291.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17919,12,12,'2023-02-09 10:46:32',291.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17920,12,12,'2023-02-09 10:46:32',291.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17921,12,12,'2023-02-09 10:46:32',291.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17922,12,12,'2023-02-09 10:46:32',292.214627,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17923,12,12,'2023-02-09 10:46:32',292.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17924,12,12,'2023-02-09 10:46:32',292.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17925,12,12,'2023-02-09 10:46:32',292.700995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17926,12,12,'2023-02-09 10:46:32',293.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17927,12,12,'2023-02-09 10:46:32',293.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17928,12,12,'2023-02-09 10:46:32',293.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17929,12,12,'2023-02-09 10:46:32',293.698998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17930,12,12,'2023-02-09 10:46:32',294.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17931,12,12,'2023-02-09 10:46:32',294.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17932,12,12,'2023-02-09 10:46:32',294.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17933,12,12,'2023-02-09 10:46:32',294.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17934,12,12,'2023-02-09 10:46:32',295.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17935,12,12,'2023-02-09 10:46:32',295.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17936,12,12,'2023-02-09 10:46:32',295.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17937,12,12,'2023-02-09 10:46:32',295.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17938,12,12,'2023-02-09 10:46:32',296.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17939,12,12,'2023-02-09 10:46:32',296.309625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17940,12,12,'2023-02-09 10:46:32',296.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17941,12,12,'2023-02-09 10:46:32',296.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17942,12,12,'2023-02-09 10:46:32',297.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17943,12,12,'2023-02-09 10:46:32',297.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17944,12,12,'2023-02-09 10:46:32',297.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17945,12,12,'2023-02-09 10:46:32',297.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17946,12,12,'2023-02-09 10:46:32',298.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17947,12,12,'2023-02-09 10:46:32',298.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17948,12,12,'2023-02-09 10:46:32',298.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17949,12,12,'2023-02-09 10:46:32',298.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17950,12,12,'2023-02-09 10:46:32',299.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17951,12,12,'2023-02-09 10:46:32',299.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17952,12,12,'2023-02-09 10:46:32',299.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17953,12,12,'2023-02-09 10:46:32',299.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17954,12,12,'2023-02-09 10:46:32',300.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17955,12,12,'2023-02-09 10:46:32',300.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17956,12,12,'2023-02-09 10:46:32',300.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17957,12,12,'2023-02-09 10:46:32',300.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17958,12,12,'2023-02-09 10:46:32',301.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17959,12,12,'2023-02-09 10:46:32',301.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17960,12,12,'2023-02-09 10:46:32',301.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17961,12,12,'2023-02-09 10:46:32',301.880999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17962,12,12,'2023-02-09 10:46:32',302.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17963,12,12,'2023-02-09 10:46:32',302.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17964,12,12,'2023-02-09 10:46:32',302.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17965,12,12,'2023-02-09 10:46:32',302.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17966,12,12,'2023-02-09 10:46:32',303.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17967,12,12,'2023-02-09 10:46:32',303.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17968,12,12,'2023-02-09 10:46:32',303.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17969,12,12,'2023-02-09 10:46:32',303.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17970,12,12,'2023-02-09 10:46:32',304.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17971,12,12,'2023-02-09 10:46:32',304.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17972,12,12,'2023-02-09 10:46:32',304.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17973,12,12,'2023-02-09 10:46:32',304.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17974,12,12,'2023-02-09 10:46:32',305.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17975,12,12,'2023-02-09 10:46:32',305.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17976,12,12,'2023-02-09 10:46:32',305.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17977,12,12,'2023-02-09 10:46:32',305.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17978,12,12,'2023-02-09 10:46:32',306.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17979,12,12,'2023-02-09 10:46:32',306.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17980,12,12,'2023-02-09 10:46:32',306.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17981,12,12,'2023-02-09 10:46:32',306.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17982,12,12,'2023-02-09 10:46:32',307.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17983,12,12,'2023-02-09 10:46:32',307.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17984,12,12,'2023-02-09 10:46:32',307.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17985,12,12,'2023-02-09 10:46:32',307.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17986,12,12,'2023-02-09 10:46:32',308.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17987,12,12,'2023-02-09 10:46:32',308.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17988,12,12,'2023-02-09 10:46:32',308.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17989,12,12,'2023-02-09 10:46:32',309.020993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17990,12,12,'2023-02-09 10:46:32',309.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17991,12,12,'2023-02-09 10:46:32',309.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17992,12,12,'2023-02-09 10:46:32',309.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17993,12,12,'2023-02-09 10:46:32',310.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17994,12,12,'2023-02-09 10:46:32',310.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17995,12,12,'2023-02-09 10:46:32',310.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17996,12,12,'2023-02-09 10:46:32',311.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17997,12,12,'2023-02-09 10:46:32',311.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17998,12,12,'2023-02-09 10:46:32',311.597623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17999,12,12,'2023-02-09 10:46:32',311.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18000,12,12,'2023-02-09 10:46:32',312.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18001,12,12,'2023-02-09 10:46:32',312.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18002,12,12,'2023-02-09 10:46:32',312.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18003,12,12,'2023-02-09 10:46:32',312.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18004,12,12,'2023-02-09 10:46:32',313.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18005,12,12,'2023-02-09 10:46:32',313.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18006,12,12,'2023-02-09 10:46:32',313.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18007,12,12,'2023-02-09 10:46:32',313.654623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18008,12,12,'2023-02-09 10:46:32',314.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18009,12,12,'2023-02-09 10:46:32',314.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18010,12,12,'2023-02-09 10:46:32',314.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18011,12,12,'2023-02-09 10:46:32',314.667623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18012,12,12,'2023-02-09 10:46:32',315.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18013,12,12,'2023-02-09 10:46:32',315.142002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18014,12,12,'2023-02-09 10:46:32',315.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18015,12,12,'2023-02-09 10:46:32',315.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18016,12,12,'2023-02-09 10:46:32',316.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18017,12,12,'2023-02-09 10:46:32',316.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18018,12,12,'2023-02-09 10:46:32',316.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18019,12,12,'2023-02-09 10:46:32',316.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18020,12,12,'2023-02-09 10:46:32',317.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18021,12,12,'2023-02-09 10:46:32',317.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18022,12,12,'2023-02-09 10:46:32',317.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18023,12,12,'2023-02-09 10:46:32',317.731617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18024,12,12,'2023-02-09 10:46:32',318.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18025,12,12,'2023-02-09 10:46:32',318.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18026,12,12,'2023-02-09 10:46:32',318.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18027,12,12,'2023-02-09 10:46:32',318.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18028,12,12,'2023-02-09 10:46:32',319.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18029,12,12,'2023-02-09 10:46:32',319.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18030,12,12,'2023-02-09 10:46:32',319.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18031,12,12,'2023-02-09 10:46:32',319.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18032,12,12,'2023-02-09 10:46:32',320.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18033,12,12,'2023-02-09 10:46:32',320.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18034,12,12,'2023-02-09 10:46:32',320.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18035,12,12,'2023-02-09 10:46:32',320.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18036,12,12,'2023-02-09 10:46:32',321.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18037,12,12,'2023-02-09 10:46:32',321.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18038,12,12,'2023-02-09 10:46:32',321.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18039,12,12,'2023-02-09 10:46:32',321.804619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18040,12,12,'2023-02-09 10:46:32',322.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18041,12,12,'2023-02-09 10:46:32',322.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18042,12,12,'2023-02-09 10:46:32',322.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18043,12,12,'2023-02-09 10:46:32',322.830624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18044,12,12,'2023-02-09 10:46:32',323.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18045,12,12,'2023-02-09 10:46:32',323.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18046,12,12,'2023-02-09 10:46:32',323.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18047,12,12,'2023-02-09 10:46:32',323.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18048,12,12,'2023-02-09 10:46:32',324.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18049,12,12,'2023-02-09 10:46:32',324.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18050,12,12,'2023-02-09 10:46:32',324.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18051,12,12,'2023-02-09 10:46:32',324.867618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18052,12,12,'2023-02-09 10:46:32',325.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18053,12,12,'2023-02-09 10:46:32',325.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18054,12,12,'2023-02-09 10:46:32',325.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18055,12,12,'2023-02-09 10:46:32',325.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18056,12,12,'2023-02-09 10:46:32',326.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18057,12,12,'2023-02-09 10:46:32',326.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18058,12,12,'2023-02-09 10:46:32',326.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18059,12,12,'2023-02-09 10:46:32',326.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18060,12,12,'2023-02-09 10:46:32',327.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18061,12,12,'2023-02-09 10:46:32',327.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18062,12,12,'2023-02-09 10:46:32',327.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18063,12,12,'2023-02-09 10:46:32',327.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18064,12,12,'2023-02-09 10:46:32',328.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18065,12,12,'2023-02-09 10:46:32',328.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18066,12,12,'2023-02-09 10:46:32',328.937622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18067,12,12,'2023-02-09 10:46:32',328.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18068,12,12,'2023-02-09 10:46:32',329.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18069,12,12,'2023-02-09 10:46:32',329.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18070,12,12,'2023-02-09 10:46:32',329.956617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18071,12,12,'2023-02-09 10:46:32',329.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18072,12,12,'2023-02-09 10:46:32',330.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18073,12,12,'2023-02-09 10:46:32',330.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18074,12,12,'2023-02-09 10:46:32',330.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18075,12,12,'2023-02-09 10:46:32',330.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18076,12,12,'2023-02-09 10:46:32',331.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18077,12,12,'2023-02-09 10:46:32',331.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18078,12,12,'2023-02-09 10:46:32',331.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18079,12,12,'2023-02-09 10:46:32',332.006626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18080,12,12,'2023-02-09 10:46:32',332.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18081,12,12,'2023-02-09 10:46:32',332.446002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18082,12,12,'2023-02-09 10:46:32',333.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18083,12,12,'2023-02-09 10:46:32',333.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18084,12,12,'2023-02-09 10:46:32',333.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18085,12,12,'2023-02-09 10:46:32',333.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18086,12,12,'2023-02-09 10:46:32',334.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18087,12,12,'2023-02-09 10:46:32',334.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18088,12,12,'2023-02-09 10:46:32',334.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18089,12,12,'2023-02-09 10:46:32',334.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18090,12,12,'2023-02-09 10:46:32',335.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18091,12,12,'2023-02-09 10:46:32',335.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18092,12,12,'2023-02-09 10:46:32',335.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18093,12,12,'2023-02-09 10:46:32',335.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18094,12,12,'2023-02-09 10:46:32',336.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18095,12,12,'2023-02-09 10:46:32',336.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18096,12,12,'2023-02-09 10:46:32',336.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18097,12,12,'2023-02-09 10:46:32',336.560996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18098,12,12,'2023-02-09 10:46:32',337.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18099,12,12,'2023-02-09 10:46:32',337.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18100,12,12,'2023-02-09 10:46:32',337.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18101,12,12,'2023-02-09 10:46:32',337.558999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18102,12,12,'2023-02-09 10:46:32',338.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18103,12,12,'2023-02-09 10:46:32',338.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18104,12,12,'2023-02-09 10:46:32',338.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18105,12,12,'2023-02-09 10:46:32',338.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18106,12,12,'2023-02-09 10:46:32',339.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18107,12,12,'2023-02-09 10:46:32',339.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18108,12,12,'2023-02-09 10:46:32',339.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18109,12,12,'2023-02-09 10:46:32',339.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18110,12,12,'2023-02-09 10:46:32',340.156622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18111,12,12,'2023-02-09 10:46:32',340.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18112,12,12,'2023-02-09 10:46:32',340.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18113,12,12,'2023-02-09 10:46:32',340.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18114,12,12,'2023-02-09 10:46:32',341.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18115,12,12,'2023-02-09 10:46:32',341.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18116,12,12,'2023-02-09 10:46:32',341.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18117,12,12,'2023-02-09 10:46:32',341.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18118,12,12,'2023-02-09 10:46:32',342.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18119,12,12,'2023-02-09 10:46:32',342.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18120,12,12,'2023-02-09 10:46:32',342.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18121,12,12,'2023-02-09 10:46:32',342.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18122,12,12,'2023-02-09 10:46:32',343.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18123,12,12,'2023-02-09 10:46:32',343.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18124,12,12,'2023-02-09 10:46:32',343.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18125,12,12,'2023-02-09 10:46:32',343.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18126,12,12,'2023-02-09 10:46:32',344.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18127,12,12,'2023-02-09 10:46:32',344.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18128,12,12,'2023-02-09 10:46:32',344.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18129,12,12,'2023-02-09 10:46:32',344.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18130,12,12,'2023-02-09 10:46:32',345.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18131,12,12,'2023-02-09 10:46:32',345.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18132,12,12,'2023-02-09 10:46:32',345.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18133,12,12,'2023-02-09 10:46:32',345.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18134,12,12,'2023-02-09 10:46:32',346.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18135,12,12,'2023-02-09 10:46:32',346.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18136,12,12,'2023-02-09 10:46:32',346.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18137,12,12,'2023-02-09 10:46:32',346.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18138,12,12,'2023-02-09 10:46:32',347.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18139,12,12,'2023-02-09 10:46:32',347.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18140,12,12,'2023-02-09 10:46:32',347.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18141,12,12,'2023-02-09 10:46:32',347.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18142,12,12,'2023-02-09 10:46:32',348.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18143,12,12,'2023-02-09 10:46:32',348.329621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18144,12,12,'2023-02-09 10:46:32',348.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18145,12,12,'2023-02-09 10:46:32',348.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18146,12,12,'2023-02-09 10:46:32',349.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18147,12,12,'2023-02-09 10:46:32',349.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18148,12,12,'2023-02-09 10:46:32',349.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18149,12,12,'2023-02-09 10:46:32',349.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18150,12,12,'2023-02-09 10:46:32',350.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18151,12,12,'2023-02-09 10:46:32',350.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18152,12,12,'2023-02-09 10:46:32',350.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18153,12,12,'2023-02-09 10:46:32',350.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18154,12,12,'2023-02-09 10:46:32',351.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18155,12,12,'2023-02-09 10:46:32',351.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18156,12,12,'2023-02-09 10:46:32',351.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18157,12,12,'2023-02-09 10:46:32',351.860994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18158,12,12,'2023-02-09 10:46:32',352.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18159,12,12,'2023-02-09 10:46:32',352.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18160,12,12,'2023-02-09 10:46:32',352.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18161,12,12,'2023-02-09 10:46:32',352.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18162,12,12,'2023-02-09 10:46:32',353.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18163,12,12,'2023-02-09 10:46:32',353.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18164,12,12,'2023-02-09 10:46:32',353.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18165,12,12,'2023-02-09 10:46:32',353.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18166,12,12,'2023-02-09 10:46:32',354.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18167,12,12,'2023-02-09 10:46:32',354.446616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18168,12,12,'2023-02-09 10:46:32',354.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18169,12,12,'2023-02-09 10:46:32',354.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18170,12,12,'2023-02-09 10:46:32',355.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18171,12,12,'2023-02-09 10:46:32',355.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18172,12,12,'2023-02-09 10:46:32',355.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18173,12,12,'2023-02-09 10:46:32',355.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18174,12,12,'2023-02-09 10:46:32',356.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18175,12,12,'2023-02-09 10:46:32',356.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18176,12,12,'2023-02-09 10:46:32',356.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18177,12,12,'2023-02-09 10:46:32',356.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18178,12,12,'2023-02-09 10:46:32',357.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18179,12,12,'2023-02-09 10:46:32',357.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18180,12,12,'2023-02-09 10:46:32',357.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18181,12,12,'2023-02-09 10:46:32',357.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18182,12,12,'2023-02-09 10:46:32',358.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18183,12,12,'2023-02-09 10:46:32',358.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18184,12,12,'2023-02-09 10:46:32',358.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18185,12,12,'2023-02-09 10:46:32',358.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18186,12,12,'2023-02-09 10:46:32',359.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18187,12,12,'2023-02-09 10:46:32',359.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18188,12,12,'2023-02-09 10:46:32',359.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18189,12,12,'2023-02-09 10:46:32',359.985995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18190,12,12,'2023-02-09 10:46:32',360.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18191,12,12,'2023-02-09 10:46:32',360.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18192,12,12,'2023-02-09 10:46:32',360.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18193,12,12,'2023-02-09 10:46:32',361.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18194,12,12,'2023-02-09 10:46:32',361.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18195,12,12,'2023-02-09 10:46:32',361.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18196,12,12,'2023-02-09 10:46:32',362.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18197,12,12,'2023-02-09 10:46:32',362.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18198,12,12,'2023-02-09 10:46:32',362.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18199,12,12,'2023-02-09 10:46:32',362.607626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18200,12,12,'2023-02-09 10:46:32',363.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18201,12,12,'2023-02-09 10:46:32',363.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18202,12,12,'2023-02-09 10:46:32',363.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18203,12,12,'2023-02-09 10:46:32',363.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18204,12,12,'2023-02-09 10:46:32',364.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18205,12,12,'2023-02-09 10:46:32',364.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18206,12,12,'2023-02-09 10:46:32',364.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18207,12,12,'2023-02-09 10:46:32',364.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18208,12,12,'2023-02-09 10:46:32',365.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18209,12,12,'2023-02-09 10:46:32',365.099003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18210,12,12,'2023-02-09 10:46:32',365.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18211,12,12,'2023-02-09 10:46:32',365.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18212,12,12,'2023-02-09 10:46:32',366.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18213,12,12,'2023-02-09 10:46:32',366.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18214,12,12,'2023-02-09 10:46:32',366.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18215,12,12,'2023-02-09 10:46:32',366.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18216,12,12,'2023-02-09 10:46:32',367.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18217,12,12,'2023-02-09 10:46:32',367.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18218,12,12,'2023-02-09 10:46:32',367.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18219,12,12,'2023-02-09 10:46:32',367.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18220,12,12,'2023-02-09 10:46:32',368.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18221,12,12,'2023-02-09 10:46:32',368.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18222,12,12,'2023-02-09 10:46:32',368.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18223,12,12,'2023-02-09 10:46:32',368.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18224,12,12,'2023-02-09 10:46:32',369.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18225,12,12,'2023-02-09 10:46:32',369.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18226,12,12,'2023-02-09 10:46:32',369.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18227,12,12,'2023-02-09 10:46:32',369.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18228,12,12,'2023-02-09 10:46:32',370.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18229,12,12,'2023-02-09 10:46:32',370.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18230,12,12,'2023-02-09 10:46:32',370.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18231,12,12,'2023-02-09 10:46:32',370.767620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18232,12,12,'2023-02-09 10:46:32',371.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18233,12,12,'2023-02-09 10:46:32',371.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18234,12,12,'2023-02-09 10:46:32',371.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18235,12,12,'2023-02-09 10:46:32',371.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18236,12,12,'2023-02-09 10:46:32',372.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18237,12,12,'2023-02-09 10:46:32',372.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18238,12,12,'2023-02-09 10:46:32',372.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18239,12,12,'2023-02-09 10:46:32',372.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18240,12,12,'2023-02-09 10:46:32',373.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18241,12,12,'2023-02-09 10:46:32',373.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18242,12,12,'2023-02-09 10:46:32',373.814626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18243,12,12,'2023-02-09 10:46:32',373.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18244,12,12,'2023-02-09 10:46:32',374.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18245,12,12,'2023-02-09 10:46:32',374.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18246,12,12,'2023-02-09 10:46:32',374.836619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18247,12,12,'2023-02-09 10:46:32',374.846627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18248,12,12,'2023-02-09 10:46:32',375.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18249,12,12,'2023-02-09 10:46:32',375.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18250,12,12,'2023-02-09 10:46:32',375.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18251,12,12,'2023-02-09 10:46:32',375.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18252,12,12,'2023-02-09 10:46:32',376.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18253,12,12,'2023-02-09 10:46:32',376.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18254,12,12,'2023-02-09 10:46:32',376.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18255,12,12,'2023-02-09 10:46:32',376.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18256,12,12,'2023-02-09 10:46:32',377.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18257,12,12,'2023-02-09 10:46:32',377.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18258,12,12,'2023-02-09 10:46:32',377.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18259,12,12,'2023-02-09 10:46:32',377.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18260,12,12,'2023-02-09 10:46:32',378.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18261,12,12,'2023-02-09 10:46:32',378.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18262,12,12,'2023-02-09 10:46:32',378.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18263,12,12,'2023-02-09 10:46:32',378.930622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18264,12,12,'2023-02-09 10:46:32',379.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18265,12,12,'2023-02-09 10:46:32',379.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18266,12,12,'2023-02-09 10:46:32',379.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18267,12,12,'2023-02-09 10:46:32',379.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18268,12,12,'2023-02-09 10:46:32',380.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18269,12,12,'2023-02-09 10:46:32',380.420998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18270,12,12,'2023-02-09 10:46:32',380.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18271,12,12,'2023-02-09 10:46:32',380.970623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18272,12,12,'2023-02-09 10:46:32',381.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18273,12,12,'2023-02-09 10:46:32',381.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18274,12,12,'2023-02-09 10:46:32',381.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18275,12,12,'2023-02-09 10:46:32',381.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18276,12,12,'2023-02-09 10:46:32',382.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18277,12,12,'2023-02-09 10:46:32',382.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18278,12,12,'2023-02-09 10:46:32',382.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18279,12,12,'2023-02-09 10:46:32',383.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18280,12,12,'2023-02-09 10:46:32',383.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18281,12,12,'2023-02-09 10:46:32',383.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18282,12,12,'2023-02-09 10:46:32',384.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18283,12,12,'2023-02-09 10:46:32',384.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18284,12,12,'2023-02-09 10:46:32',384.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18285,12,12,'2023-02-09 10:46:32',384.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18286,12,12,'2023-02-09 10:46:32',385.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18287,12,12,'2023-02-09 10:46:32',385.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18288,12,12,'2023-02-09 10:46:32',385.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18289,12,12,'2023-02-09 10:46:32',385.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18290,12,12,'2023-02-09 10:46:32',386.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18291,12,12,'2023-02-09 10:46:32',386.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18292,12,12,'2023-02-09 10:46:32',386.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18293,12,12,'2023-02-09 10:46:32',386.541997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18294,12,12,'2023-02-09 10:46:32',387.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18295,12,12,'2023-02-09 10:46:32',387.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18296,12,12,'2023-02-09 10:46:32',387.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18297,12,12,'2023-02-09 10:46:32',387.525998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18298,12,12,'2023-02-09 10:46:32',388.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18299,12,12,'2023-02-09 10:46:32',388.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18300,12,12,'2023-02-09 10:46:32',388.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18301,12,12,'2023-02-09 10:46:32',388.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18302,12,12,'2023-02-09 10:46:32',389.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18303,12,12,'2023-02-09 10:46:32',389.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18304,12,12,'2023-02-09 10:46:32',389.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18305,12,12,'2023-02-09 10:46:32',389.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18306,12,12,'2023-02-09 10:46:32',390.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18307,12,12,'2023-02-09 10:46:32',390.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18308,12,12,'2023-02-09 10:46:32',390.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18309,12,12,'2023-02-09 10:46:32',390.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18310,12,12,'2023-02-09 10:46:32',391.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18311,12,12,'2023-02-09 10:46:32',391.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18312,12,12,'2023-02-09 10:46:32',391.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18313,12,12,'2023-02-09 10:46:32',391.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18314,12,12,'2023-02-09 10:46:32',392.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18315,12,12,'2023-02-09 10:46:32',392.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18316,12,12,'2023-02-09 10:46:32',392.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18317,12,12,'2023-02-09 10:46:32',392.662000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18318,12,12,'2023-02-09 10:46:32',393.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18319,12,12,'2023-02-09 10:46:32',393.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18320,12,12,'2023-02-09 10:46:32',393.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18321,12,12,'2023-02-09 10:46:32',393.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18322,12,12,'2023-02-09 10:46:32',394.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18323,12,12,'2023-02-09 10:46:32',394.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18324,12,12,'2023-02-09 10:46:32',394.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18325,12,12,'2023-02-09 10:46:32',394.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18326,12,12,'2023-02-09 10:46:32',395.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18327,12,12,'2023-02-09 10:46:32',395.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18328,12,12,'2023-02-09 10:46:32',395.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18329,12,12,'2023-02-09 10:46:32',395.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18330,12,12,'2023-02-09 10:46:32',396.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18331,12,12,'2023-02-09 10:46:32',396.268619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18332,12,12,'2023-02-09 10:46:32',396.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18333,12,12,'2023-02-09 10:46:32',396.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18334,12,12,'2023-02-09 10:46:32',397.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18335,12,12,'2023-02-09 10:46:32',397.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18336,12,12,'2023-02-09 10:46:32',397.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18337,12,12,'2023-02-09 10:46:32',397.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18338,12,12,'2023-02-09 10:46:32',398.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18339,12,12,'2023-02-09 10:46:32',398.305622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18340,12,12,'2023-02-09 10:46:32',398.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18341,12,12,'2023-02-09 10:46:32',398.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18342,12,12,'2023-02-09 10:46:32',399.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18343,12,12,'2023-02-09 10:46:32',399.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18344,12,12,'2023-02-09 10:46:32',399.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18345,12,12,'2023-02-09 10:46:32',399.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18346,12,12,'2023-02-09 10:46:32',400.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18347,12,12,'2023-02-09 10:46:32',400.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18348,12,12,'2023-02-09 10:46:32',400.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18349,12,12,'2023-02-09 10:46:32',400.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18350,12,12,'2023-02-09 10:46:32',401.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18351,12,12,'2023-02-09 10:46:32',401.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18352,12,12,'2023-02-09 10:46:32',401.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18353,12,12,'2023-02-09 10:46:32',401.840998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18354,12,12,'2023-02-09 10:46:32',402.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18355,12,12,'2023-02-09 10:46:32',402.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18356,12,12,'2023-02-09 10:46:32',402.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18357,12,12,'2023-02-09 10:46:32',402.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18358,12,12,'2023-02-09 10:46:32',403.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18359,12,12,'2023-02-09 10:46:32',403.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18360,12,12,'2023-02-09 10:46:32',403.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18361,12,12,'2023-02-09 10:46:32',403.859002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18362,12,12,'2023-02-09 10:46:32',404.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18363,12,12,'2023-02-09 10:46:32',404.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18364,12,12,'2023-02-09 10:46:32',404.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18365,12,12,'2023-02-09 10:46:32',404.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18366,12,12,'2023-02-09 10:46:32',405.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18367,12,12,'2023-02-09 10:46:32',405.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18368,12,12,'2023-02-09 10:46:32',405.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18369,12,12,'2023-02-09 10:46:32',405.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18370,12,12,'2023-02-09 10:46:32',406.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18371,12,12,'2023-02-09 10:46:32',406.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18372,12,12,'2023-02-09 10:46:32',406.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18373,12,12,'2023-02-09 10:46:32',406.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18374,12,12,'2023-02-09 10:46:32',407.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18375,12,12,'2023-02-09 10:46:32',407.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18376,12,12,'2023-02-09 10:46:32',407.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18377,12,12,'2023-02-09 10:46:32',407.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18378,12,12,'2023-02-09 10:46:32',408.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18379,12,12,'2023-02-09 10:46:32',408.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18380,12,12,'2023-02-09 10:46:32',408.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18381,12,12,'2023-02-09 10:46:32',408.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18382,12,12,'2023-02-09 10:46:32',409.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18383,12,12,'2023-02-09 10:46:32',409.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18384,12,12,'2023-02-09 10:46:32',409.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18385,12,12,'2023-02-09 10:46:32',409.965999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18386,12,12,'2023-02-09 10:46:32',410.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18387,12,12,'2023-02-09 10:46:32',410.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18388,12,12,'2023-02-09 10:46:32',410.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18389,12,12,'2023-02-09 10:46:32',410.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18390,12,12,'2023-02-09 10:46:32',411.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18391,12,12,'2023-02-09 10:46:32',411.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18392,12,12,'2023-02-09 10:46:32',411.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18393,12,12,'2023-02-09 10:46:32',412.040993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18394,12,12,'2023-02-09 10:46:32',412.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18395,12,12,'2023-02-09 10:46:32',412.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18396,12,12,'2023-02-09 10:46:32',413.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18397,12,12,'2023-02-09 10:46:32',413.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18398,12,12,'2023-02-09 10:46:32',413.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18399,12,12,'2023-02-09 10:46:32',413.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18400,12,12,'2023-02-09 10:46:32',414.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18401,12,12,'2023-02-09 10:46:32',414.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18402,12,12,'2023-02-09 10:46:32',414.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18403,12,12,'2023-02-09 10:46:32',414.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18404,12,12,'2023-02-09 10:46:32',415.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18405,12,12,'2023-02-09 10:46:32',415.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18406,12,12,'2023-02-09 10:46:32',415.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18407,12,12,'2023-02-09 10:46:32',415.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18408,12,12,'2023-02-09 10:46:32',416.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18409,12,12,'2023-02-09 10:46:32',416.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18410,12,12,'2023-02-09 10:46:32',416.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18411,12,12,'2023-02-09 10:46:32',416.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18412,12,12,'2023-02-09 10:46:32',417.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18413,12,12,'2023-02-09 10:46:32',417.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18414,12,12,'2023-02-09 10:46:32',417.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18415,12,12,'2023-02-09 10:46:32',417.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18416,12,12,'2023-02-09 10:46:32',418.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18417,12,12,'2023-02-09 10:46:32',418.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18418,12,12,'2023-02-09 10:46:32',418.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18419,12,12,'2023-02-09 10:46:32',418.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18420,12,12,'2023-02-09 10:46:32',419.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18421,12,12,'2023-02-09 10:46:32',419.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18422,12,12,'2023-02-09 10:46:32',419.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18423,12,12,'2023-02-09 10:46:32',419.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18424,12,12,'2023-02-09 10:46:32',420.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18425,12,12,'2023-02-09 10:46:32',420.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18426,12,12,'2023-02-09 10:46:32',420.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18427,12,12,'2023-02-09 10:46:32',420.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18428,12,12,'2023-02-09 10:46:32',421.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18429,12,12,'2023-02-09 10:46:32',421.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18430,12,12,'2023-02-09 10:46:32',421.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18431,12,12,'2023-02-09 10:46:32',421.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18432,12,12,'2023-02-09 10:46:32',422.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18433,12,12,'2023-02-09 10:46:32',422.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18434,12,12,'2023-02-09 10:46:32',422.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18435,12,12,'2023-02-09 10:46:32',422.788622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18436,12,12,'2023-02-09 10:46:32',423.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18437,12,12,'2023-02-09 10:46:32',423.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18438,12,12,'2023-02-09 10:46:32',423.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18439,12,12,'2023-02-09 10:46:32',423.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18440,12,12,'2023-02-09 10:46:32',424.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18441,12,12,'2023-02-09 10:46:32',424.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18442,12,12,'2023-02-09 10:46:32',424.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18443,12,12,'2023-02-09 10:46:32',424.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18444,12,12,'2023-02-09 10:46:32',425.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18445,12,12,'2023-02-09 10:46:32',425.301996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18446,12,12,'2023-02-09 10:46:32',425.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18447,12,12,'2023-02-09 10:46:32',425.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18448,12,12,'2023-02-09 10:46:32',426.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18449,12,12,'2023-02-09 10:46:32',426.285997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18450,12,12,'2023-02-09 10:46:32',426.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18451,12,12,'2023-02-09 10:46:32',426.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18452,12,12,'2023-02-09 10:46:32',427.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18453,12,12,'2023-02-09 10:46:32',427.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18454,12,12,'2023-02-09 10:46:32',427.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18455,12,12,'2023-02-09 10:46:32',427.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18456,12,12,'2023-02-09 10:46:32',428.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18457,12,12,'2023-02-09 10:46:32',428.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18458,12,12,'2023-02-09 10:46:32',428.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18459,12,12,'2023-02-09 10:46:32',428.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18460,12,12,'2023-02-09 10:46:32',429.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18461,12,12,'2023-02-09 10:46:32',429.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18462,12,12,'2023-02-09 10:46:32',429.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18463,12,12,'2023-02-09 10:46:32',429.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18464,12,12,'2023-02-09 10:46:32',430.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18465,12,12,'2023-02-09 10:46:32',430.401002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18466,12,12,'2023-02-09 10:46:32',430.938618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18467,12,12,'2023-02-09 10:46:32',430.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18468,12,12,'2023-02-09 10:46:32',431.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18469,12,12,'2023-02-09 10:46:32',431.398995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18470,12,12,'2023-02-09 10:46:32',431.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18471,12,12,'2023-02-09 10:46:32',431.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18472,12,12,'2023-02-09 10:46:32',432.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18473,12,12,'2023-02-09 10:46:32',432.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18474,12,12,'2023-02-09 10:46:32',432.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18475,12,12,'2023-02-09 10:46:32',432.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18476,12,12,'2023-02-09 10:46:32',433.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18477,12,12,'2023-02-09 10:46:32',433.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18478,12,12,'2023-02-09 10:46:32',433.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18479,12,12,'2023-02-09 10:46:32',434.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18480,12,12,'2023-02-09 10:46:32',434.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18481,12,12,'2023-02-09 10:46:32',434.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18482,12,12,'2023-02-09 10:46:32',435.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18483,12,12,'2023-02-09 10:46:32',435.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18484,12,12,'2023-02-09 10:46:32',435.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18485,12,12,'2023-02-09 10:46:32',435.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18486,12,12,'2023-02-09 10:46:32',436.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18487,12,12,'2023-02-09 10:46:32',436.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18488,12,12,'2023-02-09 10:46:32',436.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18489,12,12,'2023-02-09 10:46:32',436.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18490,12,12,'2023-02-09 10:46:32',437.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18491,12,12,'2023-02-09 10:46:32',437.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18492,12,12,'2023-02-09 10:46:32',437.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18493,12,12,'2023-02-09 10:46:32',437.540996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18494,12,12,'2023-02-09 10:46:32',438.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18495,12,12,'2023-02-09 10:46:32',438.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18496,12,12,'2023-02-09 10:46:32',438.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18497,12,12,'2023-02-09 10:46:32',438.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18498,12,12,'2023-02-09 10:46:32',439.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18499,12,12,'2023-02-09 10:46:32',439.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18500,12,12,'2023-02-09 10:46:32',439.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18501,12,12,'2023-02-09 10:46:32',439.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18502,12,12,'2023-02-09 10:46:32',440.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18503,12,12,'2023-02-09 10:46:32',440.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18504,12,12,'2023-02-09 10:46:32',440.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18505,12,12,'2023-02-09 10:46:32',440.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18506,12,12,'2023-02-09 10:46:32',441.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18507,12,12,'2023-02-09 10:46:32',441.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18508,12,12,'2023-02-09 10:46:32',441.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18509,12,12,'2023-02-09 10:46:32',441.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18510,12,12,'2023-02-09 10:46:32',442.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18511,12,12,'2023-02-09 10:46:32',442.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18512,12,12,'2023-02-09 10:46:32',442.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18513,12,12,'2023-02-09 10:46:32',442.640998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18514,12,12,'2023-02-09 10:46:32',443.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18515,12,12,'2023-02-09 10:46:32',443.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18516,12,12,'2023-02-09 10:46:32',443.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18517,12,12,'2023-02-09 10:46:32',443.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18518,12,12,'2023-02-09 10:46:32',444.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18519,12,12,'2023-02-09 10:46:32',444.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18520,12,12,'2023-02-09 10:46:32',444.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18521,12,12,'2023-02-09 10:46:32',444.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18522,12,12,'2023-02-09 10:46:32',445.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18523,12,12,'2023-02-09 10:46:32',445.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18524,12,12,'2023-02-09 10:46:32',445.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18525,12,12,'2023-02-09 10:46:32',445.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18526,12,12,'2023-02-09 10:46:32',446.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18527,12,12,'2023-02-09 10:46:32',446.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18528,12,12,'2023-02-09 10:46:32',446.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18529,12,12,'2023-02-09 10:46:32',446.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18530,12,12,'2023-02-09 10:46:32',447.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18531,12,12,'2023-02-09 10:46:32',447.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18532,12,12,'2023-02-09 10:46:32',447.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18533,12,12,'2023-02-09 10:46:32',447.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18534,12,12,'2023-02-09 10:46:32',448.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18535,12,12,'2023-02-09 10:46:32',448.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18536,12,12,'2023-02-09 10:46:32',448.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18537,12,12,'2023-02-09 10:46:32',448.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18538,12,12,'2023-02-09 10:46:32',449.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18539,12,12,'2023-02-09 10:46:32',449.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18540,12,12,'2023-02-09 10:46:32',449.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18541,12,12,'2023-02-09 10:46:32',449.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18542,12,12,'2023-02-09 10:46:32',450.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18543,12,12,'2023-02-09 10:46:32',450.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18544,12,12,'2023-02-09 10:46:32',450.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18545,12,12,'2023-02-09 10:46:32',450.801002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18546,12,12,'2023-02-09 10:46:32',451.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18547,12,12,'2023-02-09 10:46:32',451.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18548,12,12,'2023-02-09 10:46:32',451.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18549,12,12,'2023-02-09 10:46:32',451.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18550,12,12,'2023-02-09 10:46:32',452.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18551,12,12,'2023-02-09 10:46:32',452.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18552,12,12,'2023-02-09 10:46:32',452.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18553,12,12,'2023-02-09 10:46:32',452.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18554,12,12,'2023-02-09 10:46:32',453.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18555,12,12,'2023-02-09 10:46:32',453.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18556,12,12,'2023-02-09 10:46:32',453.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18557,12,12,'2023-02-09 10:46:32',453.826001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18558,12,12,'2023-02-09 10:46:32',454.396617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18559,12,12,'2023-02-09 10:46:32',454.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18560,12,12,'2023-02-09 10:46:32',454.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18561,12,12,'2023-02-09 10:46:32',454.880994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18562,12,12,'2023-02-09 10:46:32',455.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18563,12,12,'2023-02-09 10:46:32',455.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18564,12,12,'2023-02-09 10:46:32',455.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18565,12,12,'2023-02-09 10:46:32',455.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18566,12,12,'2023-02-09 10:46:32',456.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18567,12,12,'2023-02-09 10:46:32',456.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18568,12,12,'2023-02-09 10:46:32',456.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18569,12,12,'2023-02-09 10:46:32',456.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18570,12,12,'2023-02-09 10:46:32',457.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18571,12,12,'2023-02-09 10:46:32',457.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18572,12,12,'2023-02-09 10:46:32',457.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18573,12,12,'2023-02-09 10:46:32',457.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18574,12,12,'2023-02-09 10:46:32',458.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18575,12,12,'2023-02-09 10:46:32',458.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18576,12,12,'2023-02-09 10:46:32',458.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18577,12,12,'2023-02-09 10:46:32',458.938999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18578,12,12,'2023-02-09 10:46:32',459.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18579,12,12,'2023-02-09 10:46:32',459.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18580,12,12,'2023-02-09 10:46:32',459.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18581,12,12,'2023-02-09 10:46:32',459.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18582,12,12,'2023-02-09 10:46:32',460.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18583,12,12,'2023-02-09 10:46:32',460.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18584,12,12,'2023-02-09 10:46:32',460.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18585,12,12,'2023-02-09 10:46:32',460.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18586,12,12,'2023-02-09 10:46:32',461.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18587,12,12,'2023-02-09 10:46:32',461.544617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18588,12,12,'2023-02-09 10:46:32',461.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18589,12,12,'2023-02-09 10:46:32',462.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18590,12,12,'2023-02-09 10:46:32',462.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18591,12,12,'2023-02-09 10:46:32',462.570623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18592,12,12,'2023-02-09 10:46:32',462.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18593,12,12,'2023-02-09 10:46:32',463.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18594,12,12,'2023-02-09 10:46:32',463.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18595,12,12,'2023-02-09 10:46:32',463.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18596,12,12,'2023-02-09 10:46:32',464.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18597,12,12,'2023-02-09 10:46:32',464.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18598,12,12,'2023-02-09 10:46:32',464.596622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18599,12,12,'2023-02-09 10:46:32',464.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18600,12,12,'2023-02-09 10:46:32',465.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18601,12,12,'2023-02-09 10:46:32',465.045996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18602,12,12,'2023-02-09 10:46:32',465.617619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18603,12,12,'2023-02-09 10:46:32',465.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18604,12,12,'2023-02-09 10:46:32',466.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18605,12,12,'2023-02-09 10:46:32',466.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18606,12,12,'2023-02-09 10:46:32',466.636624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18607,12,12,'2023-02-09 10:46:32',466.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18608,12,12,'2023-02-09 10:46:32',467.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18609,12,12,'2023-02-09 10:46:32',467.121000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18610,12,12,'2023-02-09 10:46:32',467.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18611,12,12,'2023-02-09 10:46:32',467.669619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18612,12,12,'2023-02-09 10:46:32',468.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18613,12,12,'2023-02-09 10:46:32',468.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18614,12,12,'2023-02-09 10:46:32',468.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18615,12,12,'2023-02-09 10:46:32',468.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18616,12,12,'2023-02-09 10:46:32',469.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18617,12,12,'2023-02-09 10:46:32',469.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18618,12,12,'2023-02-09 10:46:32',469.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18619,12,12,'2023-02-09 10:46:32',469.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18620,12,12,'2023-02-09 10:46:32',470.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18621,12,12,'2023-02-09 10:46:32',470.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18622,12,12,'2023-02-09 10:46:32',470.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18623,12,12,'2023-02-09 10:46:32',470.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18624,12,12,'2023-02-09 10:46:32',471.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18625,12,12,'2023-02-09 10:46:32',471.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18626,12,12,'2023-02-09 10:46:32',471.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18627,12,12,'2023-02-09 10:46:32',471.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18628,12,12,'2023-02-09 10:46:32',472.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18629,12,12,'2023-02-09 10:46:32',472.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18630,12,12,'2023-02-09 10:46:32',472.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18631,12,12,'2023-02-09 10:46:32',472.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18632,12,12,'2023-02-09 10:46:32',473.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18633,12,12,'2023-02-09 10:46:32',473.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18634,12,12,'2023-02-09 10:46:32',473.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18635,12,12,'2023-02-09 10:46:32',473.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18636,12,12,'2023-02-09 10:46:32',474.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18637,12,12,'2023-02-09 10:46:32',474.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18638,12,12,'2023-02-09 10:46:32',474.796617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18639,12,12,'2023-02-09 10:46:32',474.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18640,12,12,'2023-02-09 10:46:32',475.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18641,12,12,'2023-02-09 10:46:32',475.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18642,12,12,'2023-02-09 10:46:32',475.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18643,12,12,'2023-02-09 10:46:32',475.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18644,12,12,'2023-02-09 10:46:32',476.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18645,12,12,'2023-02-09 10:46:32',476.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18646,12,12,'2023-02-09 10:46:32',476.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18647,12,12,'2023-02-09 10:46:32',476.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18648,12,12,'2023-02-09 10:46:32',477.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18649,12,12,'2023-02-09 10:46:32',477.320995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18650,12,12,'2023-02-09 10:46:32',477.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18651,12,12,'2023-02-09 10:46:32',477.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18652,12,12,'2023-02-09 10:46:32',478.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18653,12,12,'2023-02-09 10:46:32',478.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18654,12,12,'2023-02-09 10:46:32',478.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18655,12,12,'2023-02-09 10:46:32',478.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18656,12,12,'2023-02-09 10:46:32',479.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18657,12,12,'2023-02-09 10:46:32',479.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18658,12,12,'2023-02-09 10:46:32',479.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18659,12,12,'2023-02-09 10:46:32',479.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18660,12,12,'2023-02-09 10:46:32',480.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18661,12,12,'2023-02-09 10:46:32',480.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18662,12,12,'2023-02-09 10:46:32',480.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18663,12,12,'2023-02-09 10:46:32',480.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18664,12,12,'2023-02-09 10:46:32',481.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18665,12,12,'2023-02-09 10:46:32',481.365994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18666,12,12,'2023-02-09 10:46:32',481.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18667,12,12,'2023-02-09 10:46:32',481.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18668,12,12,'2023-02-09 10:46:32',482.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18669,12,12,'2023-02-09 10:46:32',482.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18670,12,12,'2023-02-09 10:46:32',482.957617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18671,12,12,'2023-02-09 10:46:32',482.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18672,12,12,'2023-02-09 10:46:32',483.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18673,12,12,'2023-02-09 10:46:32',483.440998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18674,12,12,'2023-02-09 10:46:32',483.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18675,12,12,'2023-02-09 10:46:32',483.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18676,12,12,'2023-02-09 10:46:32',484.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18677,12,12,'2023-02-09 10:46:32',484.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18678,12,12,'2023-02-09 10:46:32',484.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18679,12,12,'2023-02-09 10:46:32',485.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18680,12,12,'2023-02-09 10:46:32',485.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18681,12,12,'2023-02-09 10:46:32',485.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18682,12,12,'2023-02-09 10:46:32',486.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18683,12,12,'2023-02-09 10:46:32',486.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18684,12,12,'2023-02-09 10:46:32',486.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18685,12,12,'2023-02-09 10:46:32',486.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18686,12,12,'2023-02-09 10:46:32',487.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18687,12,12,'2023-02-09 10:46:32',487.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18688,12,12,'2023-02-09 10:46:32',487.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18689,12,12,'2023-02-09 10:46:32',487.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18690,12,12,'2023-02-09 10:46:32',488.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18691,12,12,'2023-02-09 10:46:32',488.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18692,12,12,'2023-02-09 10:46:32',488.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18693,12,12,'2023-02-09 10:46:32',488.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18694,12,12,'2023-02-09 10:46:32',489.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18695,12,12,'2023-02-09 10:46:32',489.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18696,12,12,'2023-02-09 10:46:32',489.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18697,12,12,'2023-02-09 10:46:32',489.561001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18698,12,12,'2023-02-09 10:46:32',490.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18699,12,12,'2023-02-09 10:46:32',490.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18700,12,12,'2023-02-09 10:46:32',490.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18701,12,12,'2023-02-09 10:46:32',490.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18702,12,12,'2023-02-09 10:46:32',491.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18703,12,12,'2023-02-09 10:46:32',491.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18704,12,12,'2023-02-09 10:46:32',491.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18705,12,12,'2023-02-09 10:46:32',491.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18706,12,12,'2023-02-09 10:46:32',492.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18707,12,12,'2023-02-09 10:46:32',492.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18708,12,12,'2023-02-09 10:46:32',492.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18709,12,12,'2023-02-09 10:46:32',492.586000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18710,12,12,'2023-02-09 10:46:32',493.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18711,12,12,'2023-02-09 10:46:32',493.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18712,12,12,'2023-02-09 10:46:32',493.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18713,12,12,'2023-02-09 10:46:32',493.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18714,12,12,'2023-02-09 10:46:32',494.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18715,12,12,'2023-02-09 10:46:32',494.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18716,12,12,'2023-02-09 10:46:32',494.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18717,12,12,'2023-02-09 10:46:32',494.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18718,12,12,'2023-02-09 10:46:32',495.198619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18719,12,12,'2023-02-09 10:46:32',495.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18720,12,12,'2023-02-09 10:46:32',495.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18721,12,12,'2023-02-09 10:46:32',495.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18722,12,12,'2023-02-09 10:46:32',496.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18723,12,12,'2023-02-09 10:46:32',496.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18724,12,12,'2023-02-09 10:46:32',496.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18725,12,12,'2023-02-09 10:46:32',496.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18726,12,12,'2023-02-09 10:46:32',497.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18727,12,12,'2023-02-09 10:46:32',497.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18728,12,12,'2023-02-09 10:46:32',497.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18729,12,12,'2023-02-09 10:46:32',497.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18730,12,12,'2023-02-09 10:46:32',498.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18731,12,12,'2023-02-09 10:46:32',498.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18732,12,12,'2023-02-09 10:46:32',498.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18733,12,12,'2023-02-09 10:46:32',498.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18734,12,12,'2023-02-09 10:46:32',499.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18735,12,12,'2023-02-09 10:46:32',499.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18736,12,12,'2023-02-09 10:46:32',499.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18737,12,12,'2023-02-09 10:46:32',499.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18738,12,12,'2023-02-09 10:46:32',500.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18739,12,12,'2023-02-09 10:46:32',500.307624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18740,12,12,'2023-02-09 10:46:32',500.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18741,12,12,'2023-02-09 10:46:32',500.780997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18742,12,12,'2023-02-09 10:46:32',501.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18743,12,12,'2023-02-09 10:46:32',501.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18744,12,12,'2023-02-09 10:46:32',501.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18745,12,12,'2023-02-09 10:46:32',501.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18746,12,12,'2023-02-09 10:46:32',502.338623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18747,12,12,'2023-02-09 10:46:32',502.349616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18748,12,12,'2023-02-09 10:46:32',502.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18749,12,12,'2023-02-09 10:46:32',502.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18750,12,12,'2023-02-09 10:46:32',503.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18751,12,12,'2023-02-09 10:46:32',503.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18752,12,12,'2023-02-09 10:46:32',503.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18753,12,12,'2023-02-09 10:46:32',503.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18754,12,12,'2023-02-09 10:46:32',504.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18755,12,12,'2023-02-09 10:46:32',504.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18756,12,12,'2023-02-09 10:46:32',504.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18757,12,12,'2023-02-09 10:46:32',504.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18758,12,12,'2023-02-09 10:46:32',505.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18759,12,12,'2023-02-09 10:46:32',505.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18760,12,12,'2023-02-09 10:46:32',505.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18761,12,12,'2023-02-09 10:46:32',505.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18762,12,12,'2023-02-09 10:46:32',506.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18763,12,12,'2023-02-09 10:46:32',506.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18764,12,12,'2023-02-09 10:46:32',506.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18765,12,12,'2023-02-09 10:46:32',506.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18766,12,12,'2023-02-09 10:46:32',507.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18767,12,12,'2023-02-09 10:46:32',507.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18768,12,12,'2023-02-09 10:46:32',507.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18769,12,12,'2023-02-09 10:46:32',507.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18770,12,12,'2023-02-09 10:46:32',508.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18771,12,12,'2023-02-09 10:46:32',508.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18772,12,12,'2023-02-09 10:46:32',508.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18773,12,12,'2023-02-09 10:46:32',508.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18774,12,12,'2023-02-09 10:46:32',509.476624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18775,12,12,'2023-02-09 10:46:32',509.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18776,12,12,'2023-02-09 10:46:32',509.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18777,12,12,'2023-02-09 10:46:32',509.961001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18778,12,12,'2023-02-09 10:46:32',510.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18779,12,12,'2023-02-09 10:46:32',510.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18780,12,12,'2023-02-09 10:46:32',510.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18781,12,12,'2023-02-09 10:46:32',510.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18782,12,12,'2023-02-09 10:46:32',511.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18783,12,12,'2023-02-09 10:46:32',511.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18784,12,12,'2023-02-09 10:46:32',511.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18785,12,12,'2023-02-09 10:46:32',511.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18786,12,12,'2023-02-09 10:46:32',512.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18787,12,12,'2023-02-09 10:46:32',512.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18788,12,12,'2023-02-09 10:46:32',512.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18789,12,12,'2023-02-09 10:46:32',512.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18790,12,12,'2023-02-09 10:46:32',513.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18791,12,12,'2023-02-09 10:46:32',513.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18792,12,12,'2023-02-09 10:46:32',513.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18793,12,12,'2023-02-09 10:46:32',514.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18794,12,12,'2023-02-09 10:46:32',514.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18795,12,12,'2023-02-09 10:46:32',514.588616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18796,12,12,'2023-02-09 10:46:32',515.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18797,12,12,'2023-02-09 10:46:32',515.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18798,12,12,'2023-02-09 10:46:32',515.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18799,12,12,'2023-02-09 10:46:32',515.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18800,12,12,'2023-02-09 10:46:32',516.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18801,12,12,'2023-02-09 10:46:32',516.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18802,12,12,'2023-02-09 10:46:32',516.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18803,12,12,'2023-02-09 10:46:32',516.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18804,12,12,'2023-02-09 10:46:32',517.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18805,12,12,'2023-02-09 10:46:32',517.100995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18806,12,12,'2023-02-09 10:46:32',517.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18807,12,12,'2023-02-09 10:46:32',517.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18808,12,12,'2023-02-09 10:46:32',518.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18809,12,12,'2023-02-09 10:46:32',518.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18810,12,12,'2023-02-09 10:46:32',518.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18811,12,12,'2023-02-09 10:46:32',518.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18812,12,12,'2023-02-09 10:46:32',519.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18813,12,12,'2023-02-09 10:46:32',519.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18814,12,12,'2023-02-09 10:46:32',519.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18815,12,12,'2023-02-09 10:46:32',519.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18816,12,12,'2023-02-09 10:46:32',520.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18817,12,12,'2023-02-09 10:46:32',520.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18818,12,12,'2023-02-09 10:46:32',520.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18819,12,12,'2023-02-09 10:46:32',520.706618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18820,12,12,'2023-02-09 10:46:32',521.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18821,12,12,'2023-02-09 10:46:32',521.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18822,12,12,'2023-02-09 10:46:32',521.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18823,12,12,'2023-02-09 10:46:32',521.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18824,12,12,'2023-02-09 10:46:32',522.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18825,12,12,'2023-02-09 10:46:32',522.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18826,12,12,'2023-02-09 10:46:32',522.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18827,12,12,'2023-02-09 10:46:32',522.749626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18828,12,12,'2023-02-09 10:46:32',523.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18829,12,12,'2023-02-09 10:46:32',523.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18830,12,12,'2023-02-09 10:46:32',523.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18831,12,12,'2023-02-09 10:46:32',523.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18832,12,12,'2023-02-09 10:46:32',524.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18833,12,12,'2023-02-09 10:46:32',524.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18834,12,12,'2023-02-09 10:46:32',524.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18835,12,12,'2023-02-09 10:46:32',524.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18836,12,12,'2023-02-09 10:46:32',525.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18837,12,12,'2023-02-09 10:46:32',525.239001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18838,12,12,'2023-02-09 10:46:32',525.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18839,12,12,'2023-02-09 10:46:32',525.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18840,12,12,'2023-02-09 10:46:32',526.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18841,12,12,'2023-02-09 10:46:32',526.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18842,12,12,'2023-02-09 10:46:32',526.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18843,12,12,'2023-02-09 10:46:32',526.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18844,12,12,'2023-02-09 10:46:32',527.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18845,12,12,'2023-02-09 10:46:32',527.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18846,12,12,'2023-02-09 10:46:32',527.834622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18847,12,12,'2023-02-09 10:46:32',527.845626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18848,12,12,'2023-02-09 10:46:32',528.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18849,12,12,'2023-02-09 10:46:32',528.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18850,12,12,'2023-02-09 10:46:32',528.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18851,12,12,'2023-02-09 10:46:32',528.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18852,12,12,'2023-02-09 10:46:32',529.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18853,12,12,'2023-02-09 10:46:32',529.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18854,12,12,'2023-02-09 10:46:32',529.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18855,12,12,'2023-02-09 10:46:32',529.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18856,12,12,'2023-02-09 10:46:32',530.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18857,12,12,'2023-02-09 10:46:32',530.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18858,12,12,'2023-02-09 10:46:32',530.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18859,12,12,'2023-02-09 10:46:32',530.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18860,12,12,'2023-02-09 10:46:32',531.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18861,12,12,'2023-02-09 10:46:32',531.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18862,12,12,'2023-02-09 10:46:32',531.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18863,12,12,'2023-02-09 10:46:32',531.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18864,12,12,'2023-02-09 10:46:32',532.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18865,12,12,'2023-02-09 10:46:32',532.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18866,12,12,'2023-02-09 10:46:32',532.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18867,12,12,'2023-02-09 10:46:32',532.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18868,12,12,'2023-02-09 10:46:32',533.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18869,12,12,'2023-02-09 10:46:32',533.421003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18870,12,12,'2023-02-09 10:46:32',533.956626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18871,12,12,'2023-02-09 10:46:32',533.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18872,12,12,'2023-02-09 10:46:32',534.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18873,12,12,'2023-02-09 10:46:32',534.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18874,12,12,'2023-02-09 10:46:32',534.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18875,12,12,'2023-02-09 10:46:32',534.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18876,12,12,'2023-02-09 10:46:32',535.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18877,12,12,'2023-02-09 10:46:32',535.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18878,12,12,'2023-02-09 10:46:32',535.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18879,12,12,'2023-02-09 10:46:32',536.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18880,12,12,'2023-02-09 10:46:32',536.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18881,12,12,'2023-02-09 10:46:32',536.458997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18882,12,12,'2023-02-09 10:46:32',537.018620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18883,12,12,'2023-02-09 10:46:32',537.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18884,12,12,'2023-02-09 10:46:32',537.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18885,12,12,'2023-02-09 10:46:32',537.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18886,12,12,'2023-02-09 10:46:32',538.035623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18887,12,12,'2023-02-09 10:46:32',538.046626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18888,12,12,'2023-02-09 10:46:32',538.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18889,12,12,'2023-02-09 10:46:32',538.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18890,12,12,'2023-02-09 10:46:32',539.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18891,12,12,'2023-02-09 10:46:32',539.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18892,12,12,'2023-02-09 10:46:32',539.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18893,12,12,'2023-02-09 10:46:32',539.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18894,12,12,'2023-02-09 10:46:32',540.078621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18895,12,12,'2023-02-09 10:46:32',540.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18896,12,12,'2023-02-09 10:46:32',540.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18897,12,12,'2023-02-09 10:46:32',540.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18898,12,12,'2023-02-09 10:46:32',541.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18899,12,12,'2023-02-09 10:46:32',541.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18900,12,12,'2023-02-09 10:46:32',541.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18901,12,12,'2023-02-09 10:46:32',541.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18902,12,12,'2023-02-09 10:46:32',542.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18903,12,12,'2023-02-09 10:46:32',542.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18904,12,12,'2023-02-09 10:46:32',542.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18905,12,12,'2023-02-09 10:46:32',542.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18906,12,12,'2023-02-09 10:46:32',543.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18907,12,12,'2023-02-09 10:46:32',543.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18908,12,12,'2023-02-09 10:46:32',543.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18909,12,12,'2023-02-09 10:46:32',543.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18910,12,12,'2023-02-09 10:46:32',544.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18911,12,12,'2023-02-09 10:46:32',544.166619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18912,12,12,'2023-02-09 10:46:32',544.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18913,12,12,'2023-02-09 10:46:32',544.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18914,12,12,'2023-02-09 10:46:32',545.174620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18915,12,12,'2023-02-09 10:46:32',545.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18916,12,12,'2023-02-09 10:46:32',545.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18917,12,12,'2023-02-09 10:46:32',545.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18918,12,12,'2023-02-09 10:46:32',546.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18919,12,12,'2023-02-09 10:46:32',546.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18920,12,12,'2023-02-09 10:46:32',546.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18921,12,12,'2023-02-09 10:46:32',546.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18922,12,12,'2023-02-09 10:46:32',547.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18923,12,12,'2023-02-09 10:46:32',547.228622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18924,12,12,'2023-02-09 10:46:32',547.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18925,12,12,'2023-02-09 10:46:32',547.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18926,12,12,'2023-02-09 10:46:32',548.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18927,12,12,'2023-02-09 10:46:32',548.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18928,12,12,'2023-02-09 10:46:32',548.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18929,12,12,'2023-02-09 10:46:32',548.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18930,12,12,'2023-02-09 10:46:32',549.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18931,12,12,'2023-02-09 10:46:32',549.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18932,12,12,'2023-02-09 10:46:32',549.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18933,12,12,'2023-02-09 10:46:32',549.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18934,12,12,'2023-02-09 10:46:32',550.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18935,12,12,'2023-02-09 10:46:32',550.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18936,12,12,'2023-02-09 10:46:32',550.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18937,12,12,'2023-02-09 10:46:32',550.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18938,12,12,'2023-02-09 10:46:32',551.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18939,12,12,'2023-02-09 10:46:32',551.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18940,12,12,'2023-02-09 10:46:32',551.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18941,12,12,'2023-02-09 10:46:32',551.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18942,12,12,'2023-02-09 10:46:32',552.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18943,12,12,'2023-02-09 10:46:32',552.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18944,12,12,'2023-02-09 10:46:32',552.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18945,12,12,'2023-02-09 10:46:32',552.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18946,12,12,'2023-02-09 10:46:32',553.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18947,12,12,'2023-02-09 10:46:32',553.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18948,12,12,'2023-02-09 10:46:32',553.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18949,12,12,'2023-02-09 10:46:32',553.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18950,12,12,'2023-02-09 10:46:32',554.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18951,12,12,'2023-02-09 10:46:32',554.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18952,12,12,'2023-02-09 10:46:32',554.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18953,12,12,'2023-02-09 10:46:32',554.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18954,12,12,'2023-02-09 10:46:32',555.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18955,12,12,'2023-02-09 10:46:32',555.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18956,12,12,'2023-02-09 10:46:32',555.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18957,12,12,'2023-02-09 10:46:32',555.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18958,12,12,'2023-02-09 10:46:32',556.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18959,12,12,'2023-02-09 10:46:32',556.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18960,12,12,'2023-02-09 10:46:32',556.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18961,12,12,'2023-02-09 10:46:32',556.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18962,12,12,'2023-02-09 10:46:32',557.418620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18963,12,12,'2023-02-09 10:46:32',557.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18964,12,12,'2023-02-09 10:46:32',557.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18965,12,12,'2023-02-09 10:46:32',557.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18966,12,12,'2023-02-09 10:46:32',558.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18967,12,12,'2023-02-09 10:46:32',558.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18968,12,12,'2023-02-09 10:46:32',558.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18969,12,12,'2023-02-09 10:46:32',558.920995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18970,12,12,'2023-02-09 10:46:32',559.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18971,12,12,'2023-02-09 10:46:32',559.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18972,12,12,'2023-02-09 10:46:32',559.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18973,12,12,'2023-02-09 10:46:32',559.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18974,12,12,'2023-02-09 10:46:32',560.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18975,12,12,'2023-02-09 10:46:32',560.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18976,12,12,'2023-02-09 10:46:32',560.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18977,12,12,'2023-02-09 10:46:32',560.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18978,12,12,'2023-02-09 10:46:32',561.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18979,12,12,'2023-02-09 10:46:32',561.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18980,12,12,'2023-02-09 10:46:32',561.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18981,12,12,'2023-02-09 10:46:32',561.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18982,12,12,'2023-02-09 10:46:32',562.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18983,12,12,'2023-02-09 10:46:32',562.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18984,12,12,'2023-02-09 10:46:32',562.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18985,12,12,'2023-02-09 10:46:32',562.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18986,12,12,'2023-02-09 10:46:32',563.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18987,12,12,'2023-02-09 10:46:32',563.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18988,12,12,'2023-02-09 10:46:32',563.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18989,12,12,'2023-02-09 10:46:32',563.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18990,12,12,'2023-02-09 10:46:32',564.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18991,12,12,'2023-02-09 10:46:32',564.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18992,12,12,'2023-02-09 10:46:32',564.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18993,12,12,'2023-02-09 10:46:32',565.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18994,12,12,'2023-02-09 10:46:32',565.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18995,12,12,'2023-02-09 10:46:32',565.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18996,12,12,'2023-02-09 10:46:32',566.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18997,12,12,'2023-02-09 10:46:32',566.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18998,12,12,'2023-02-09 10:46:32',566.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18999,12,12,'2023-02-09 10:46:32',566.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19000,12,12,'2023-02-09 10:46:32',567.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19001,12,12,'2023-02-09 10:46:32',567.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19002,12,12,'2023-02-09 10:46:32',567.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19003,12,12,'2023-02-09 10:46:32',567.628622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19004,12,12,'2023-02-09 10:46:32',568.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19005,12,12,'2023-02-09 10:46:32',568.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19006,12,12,'2023-02-09 10:46:32',568.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19007,12,12,'2023-02-09 10:46:32',568.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19008,12,12,'2023-02-09 10:46:32',569.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19009,12,12,'2023-02-09 10:46:32',569.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19010,12,12,'2023-02-09 10:46:32',569.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19011,12,12,'2023-02-09 10:46:32',569.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19012,12,12,'2023-02-09 10:46:32',570.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19013,12,12,'2023-02-09 10:46:32',570.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19014,12,12,'2023-02-09 10:46:32',570.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19015,12,12,'2023-02-09 10:46:32',570.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19016,12,12,'2023-02-09 10:46:32',571.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19017,12,12,'2023-02-09 10:46:32',571.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19018,12,12,'2023-02-09 10:46:32',571.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19019,12,12,'2023-02-09 10:46:32',571.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19020,12,12,'2023-02-09 10:46:32',572.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19021,12,12,'2023-02-09 10:46:32',572.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19022,12,12,'2023-02-09 10:46:32',572.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19023,12,12,'2023-02-09 10:46:32',572.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19024,12,12,'2023-02-09 10:46:32',573.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19025,12,12,'2023-02-09 10:46:32',573.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19026,12,12,'2023-02-09 10:46:32',573.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19027,12,12,'2023-02-09 10:46:32',573.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19028,12,12,'2023-02-09 10:46:32',574.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19029,12,12,'2023-02-09 10:46:32',574.221999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19030,12,12,'2023-02-09 10:46:32',574.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19031,12,12,'2023-02-09 10:46:32',574.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19032,12,12,'2023-02-09 10:46:32',575.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19033,12,12,'2023-02-09 10:46:32',575.206000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19034,12,12,'2023-02-09 10:46:32',575.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19035,12,12,'2023-02-09 10:46:32',575.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19036,12,12,'2023-02-09 10:46:32',576.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19037,12,12,'2023-02-09 10:46:32',576.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19038,12,12,'2023-02-09 10:46:32',576.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19039,12,12,'2023-02-09 10:46:32',576.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19040,12,12,'2023-02-09 10:46:32',577.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19041,12,12,'2023-02-09 10:46:32',577.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19042,12,12,'2023-02-09 10:46:32',577.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19043,12,12,'2023-02-09 10:46:32',577.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19044,12,12,'2023-02-09 10:46:32',578.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19045,12,12,'2023-02-09 10:46:32',578.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19046,12,12,'2023-02-09 10:46:32',578.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19047,12,12,'2023-02-09 10:46:32',578.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19048,12,12,'2023-02-09 10:46:32',579.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19049,12,12,'2023-02-09 10:46:32',579.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19050,12,12,'2023-02-09 10:46:32',579.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19051,12,12,'2023-02-09 10:46:32',579.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19052,12,12,'2023-02-09 10:46:32',580.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19053,12,12,'2023-02-09 10:46:32',580.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19054,12,12,'2023-02-09 10:46:32',580.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19055,12,12,'2023-02-09 10:46:32',580.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19056,12,12,'2023-02-09 10:46:32',581.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19057,12,12,'2023-02-09 10:46:32',581.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19058,12,12,'2023-02-09 10:46:32',581.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19059,12,12,'2023-02-09 10:46:32',581.908619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19060,12,12,'2023-02-09 10:46:32',582.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19061,12,12,'2023-02-09 10:46:32',582.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19062,12,12,'2023-02-09 10:46:32',582.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19063,12,12,'2023-02-09 10:46:32',582.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19064,12,12,'2023-02-09 10:46:32',583.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19065,12,12,'2023-02-09 10:46:32',583.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19066,12,12,'2023-02-09 10:46:32',583.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19067,12,12,'2023-02-09 10:46:32',583.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19068,12,12,'2023-02-09 10:46:32',584.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19069,12,12,'2023-02-09 10:46:32',584.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19070,12,12,'2023-02-09 10:46:32',584.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19071,12,12,'2023-02-09 10:46:32',584.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19072,12,12,'2023-02-09 10:46:32',585.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19073,12,12,'2023-02-09 10:46:32',585.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19074,12,12,'2023-02-09 10:46:32',585.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19075,12,12,'2023-02-09 10:46:32',585.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19076,12,12,'2023-02-09 10:46:32',586.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19077,12,12,'2023-02-09 10:46:32',586.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19078,12,12,'2023-02-09 10:46:32',586.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19079,12,12,'2023-02-09 10:46:32',587.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19080,12,12,'2023-02-09 10:46:32',587.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19081,12,12,'2023-02-09 10:46:32',587.480999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19082,12,12,'2023-02-09 10:46:32',588.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19083,12,12,'2023-02-09 10:46:32',588.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19084,12,12,'2023-02-09 10:46:32',588.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19085,12,12,'2023-02-09 10:46:32',588.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19086,12,12,'2023-02-09 10:46:32',589.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19087,12,12,'2023-02-09 10:46:32',589.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19088,12,12,'2023-02-09 10:46:32',589.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19089,12,12,'2023-02-09 10:46:32',589.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19090,12,12,'2023-02-09 10:46:32',590.054622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19091,12,12,'2023-02-09 10:46:32',590.065626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19092,12,12,'2023-02-09 10:46:32',590.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19093,12,12,'2023-02-09 10:46:32',590.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19094,12,12,'2023-02-09 10:46:32',591.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19095,12,12,'2023-02-09 10:46:32',591.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19096,12,12,'2023-02-09 10:46:32',591.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19097,12,12,'2023-02-09 10:46:32',591.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19098,12,12,'2023-02-09 10:46:32',592.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19099,12,12,'2023-02-09 10:46:32',592.108624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19100,12,12,'2023-02-09 10:46:32',592.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19101,12,12,'2023-02-09 10:46:32',592.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19102,12,12,'2023-02-09 10:46:32',593.116625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19103,12,12,'2023-02-09 10:46:32',593.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19104,12,12,'2023-02-09 10:46:32',593.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19105,12,12,'2023-02-09 10:46:32',593.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19106,12,12,'2023-02-09 10:46:32',594.137622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19107,12,12,'2023-02-09 10:46:32',594.148625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19108,12,12,'2023-02-09 10:46:32',594.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19109,12,12,'2023-02-09 10:46:32',594.620993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19110,12,12,'2023-02-09 10:46:32',595.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19111,12,12,'2023-02-09 10:46:32',595.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19112,12,12,'2023-02-09 10:46:32',595.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19113,12,12,'2023-02-09 10:46:32',595.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19114,12,12,'2023-02-09 10:46:32',596.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19115,12,12,'2023-02-09 10:46:32',596.187621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19116,12,12,'2023-02-09 10:46:32',596.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19117,12,12,'2023-02-09 10:46:32',596.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19118,12,12,'2023-02-09 10:46:32',597.194626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19119,12,12,'2023-02-09 10:46:32',597.205620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19120,12,12,'2023-02-09 10:46:32',597.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19121,12,12,'2023-02-09 10:46:32',597.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19122,12,12,'2023-02-09 10:46:32',598.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19123,12,12,'2023-02-09 10:46:32',598.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19124,12,12,'2023-02-09 10:46:32',598.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19125,12,12,'2023-02-09 10:46:32',598.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19126,12,12,'2023-02-09 10:46:32',599.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19127,12,12,'2023-02-09 10:46:32',599.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19128,12,12,'2023-02-09 10:46:32',599.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19129,12,12,'2023-02-09 10:46:32',599.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19130,12,12,'2023-02-09 10:46:32',600.254617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19131,12,12,'2023-02-09 10:46:32',600.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19132,12,12,'2023-02-09 10:46:32',600.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19133,12,12,'2023-02-09 10:46:32',600.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19134,12,12,'2023-02-09 10:46:32',601.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19135,12,12,'2023-02-09 10:46:32',601.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19136,12,12,'2023-02-09 10:46:32',601.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19137,12,12,'2023-02-09 10:46:32',601.760996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19138,12,12,'2023-02-09 10:46:32',602.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19139,12,12,'2023-02-09 10:46:32',602.308619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19140,12,12,'2023-02-09 10:46:32',602.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19141,12,12,'2023-02-09 10:46:32',602.758999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19142,12,12,'2023-02-09 10:46:32',603.316620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19143,12,12,'2023-02-09 10:46:32',603.327624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19144,12,12,'2023-02-09 10:46:32',603.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19145,12,12,'2023-02-09 10:46:32',603.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19146,12,12,'2023-02-09 10:46:32',604.334619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19147,12,12,'2023-02-09 10:46:32',604.345623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19148,12,12,'2023-02-09 10:46:32',604.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19149,12,12,'2023-02-09 10:46:32',604.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19150,12,12,'2023-02-09 10:46:32',605.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19151,12,12,'2023-02-09 10:46:32',605.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19152,12,12,'2023-02-09 10:46:32',605.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19153,12,12,'2023-02-09 10:46:32',605.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19154,12,12,'2023-02-09 10:46:32',606.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19155,12,12,'2023-02-09 10:46:32',606.388621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19156,12,12,'2023-02-09 10:46:32',606.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19157,12,12,'2023-02-09 10:46:32',606.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19158,12,12,'2023-02-09 10:46:32',607.394621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19159,12,12,'2023-02-09 10:46:32',607.405625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19160,12,12,'2023-02-09 10:46:32',607.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19161,12,12,'2023-02-09 10:46:32',607.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19162,12,12,'2023-02-09 10:46:32',608.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19163,12,12,'2023-02-09 10:46:32',608.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19164,12,12,'2023-02-09 10:46:32',608.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19165,12,12,'2023-02-09 10:46:32',608.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19166,12,12,'2023-02-09 10:46:32',609.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19167,12,12,'2023-02-09 10:46:32',609.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19168,12,12,'2023-02-09 10:46:32',609.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19169,12,12,'2023-02-09 10:46:32',609.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19170,12,12,'2023-02-09 10:46:32',610.456624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19171,12,12,'2023-02-09 10:46:32',610.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19172,12,12,'2023-02-09 10:46:32',610.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19173,12,12,'2023-02-09 10:46:32',610.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19174,12,12,'2023-02-09 10:46:32',611.477620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19175,12,12,'2023-02-09 10:46:32',611.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19176,12,12,'2023-02-09 10:46:32',611.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19177,12,12,'2023-02-09 10:46:32',611.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19178,12,12,'2023-02-09 10:46:32',612.495619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19179,12,12,'2023-02-09 10:46:32',612.506623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19180,12,12,'2023-02-09 10:46:32',612.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19181,12,12,'2023-02-09 10:46:32',612.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19182,12,12,'2023-02-09 10:46:32',613.516625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19183,12,12,'2023-02-09 10:46:32',613.527619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19184,12,12,'2023-02-09 10:46:32',613.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19185,12,12,'2023-02-09 10:46:32',613.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19186,12,12,'2023-02-09 10:46:32',614.538617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19187,12,12,'2023-02-09 10:46:32',614.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19188,12,12,'2023-02-09 10:46:32',614.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19189,12,12,'2023-02-09 10:46:32',614.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19190,12,12,'2023-02-09 10:46:32',615.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19191,12,12,'2023-02-09 10:46:32',615.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19192,12,12,'2023-02-09 10:46:32',615.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19193,12,12,'2023-02-09 10:46:32',616.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19194,12,12,'2023-02-09 10:46:32',616.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19195,12,12,'2023-02-09 10:46:32',616.588626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19196,12,12,'2023-02-09 10:46:32',617.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19197,12,12,'2023-02-09 10:46:32',617.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19198,12,12,'2023-02-09 10:46:32',617.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19199,12,12,'2023-02-09 10:46:32',617.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19200,12,12,'2023-02-09 10:46:32',618.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19201,12,12,'2023-02-09 10:46:32',618.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19202,12,12,'2023-02-09 10:46:32',618.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19203,12,12,'2023-02-09 10:46:32',618.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19204,12,12,'2023-02-09 10:46:32',619.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19205,12,12,'2023-02-09 10:46:32',619.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19206,12,12,'2023-02-09 10:46:32',619.637624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19207,12,12,'2023-02-09 10:46:32',619.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19208,12,12,'2023-02-09 10:46:32',620.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19209,12,12,'2023-02-09 10:46:32',620.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19210,12,12,'2023-02-09 10:46:32',620.656619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19211,12,12,'2023-02-09 10:46:32',620.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19212,12,12,'2023-02-09 10:46:32',621.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19213,12,12,'2023-02-09 10:46:32',621.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19214,12,12,'2023-02-09 10:46:32',621.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19215,12,12,'2023-02-09 10:46:32',621.689625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19216,12,12,'2023-02-09 10:46:32',622.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19217,12,12,'2023-02-09 10:46:32',622.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19218,12,12,'2023-02-09 10:46:32',622.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19219,12,12,'2023-02-09 10:46:32',622.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19220,12,12,'2023-02-09 10:46:32',623.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19221,12,12,'2023-02-09 10:46:32',623.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19222,12,12,'2023-02-09 10:46:32',623.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19223,12,12,'2023-02-09 10:46:32',623.728620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19224,12,12,'2023-02-09 10:46:32',624.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19225,12,12,'2023-02-09 10:46:32',624.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19226,12,12,'2023-02-09 10:46:32',624.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19227,12,12,'2023-02-09 10:46:32',624.749616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19228,12,12,'2023-02-09 10:46:32',625.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19229,12,12,'2023-02-09 10:46:32',625.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19230,12,12,'2023-02-09 10:46:32',625.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19231,12,12,'2023-02-09 10:46:32',625.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19232,12,12,'2023-02-09 10:46:32',626.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19233,12,12,'2023-02-09 10:46:32',626.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19234,12,12,'2023-02-09 10:46:32',626.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19235,12,12,'2023-02-09 10:46:32',626.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19236,12,12,'2023-02-09 10:46:32',627.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19237,12,12,'2023-02-09 10:46:32',627.260999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19238,12,12,'2023-02-09 10:46:32',627.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19239,12,12,'2023-02-09 10:46:32',627.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19240,12,12,'2023-02-09 10:46:32',628.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19241,12,12,'2023-02-09 10:46:32',628.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19242,12,12,'2023-02-09 10:46:32',628.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19243,12,12,'2023-02-09 10:46:32',628.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19244,12,12,'2023-02-09 10:46:32',629.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19245,12,12,'2023-02-09 10:46:32',629.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19246,12,12,'2023-02-09 10:46:32',629.835618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19247,12,12,'2023-02-09 10:46:32',629.846621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19248,12,12,'2023-02-09 10:46:32',630.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19249,12,12,'2023-02-09 10:46:32',630.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19250,12,12,'2023-02-09 10:46:32',630.856624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19251,12,12,'2023-02-09 10:46:32',630.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19252,12,12,'2023-02-09 10:46:32',631.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19253,12,12,'2023-02-09 10:46:32',631.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19254,12,12,'2023-02-09 10:46:32',631.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19255,12,12,'2023-02-09 10:46:32',631.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19256,12,12,'2023-02-09 10:46:32',632.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19257,12,12,'2023-02-09 10:46:32',632.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19258,12,12,'2023-02-09 10:46:32',632.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19259,12,12,'2023-02-09 10:46:32',632.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19260,12,12,'2023-02-09 10:46:32',633.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19261,12,12,'2023-02-09 10:46:32',633.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19262,12,12,'2023-02-09 10:46:32',633.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19263,12,12,'2023-02-09 10:46:32',633.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19264,12,12,'2023-02-09 10:46:32',634.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19265,12,12,'2023-02-09 10:46:32',634.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19266,12,12,'2023-02-09 10:46:32',634.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19267,12,12,'2023-02-09 10:46:32',634.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19268,12,12,'2023-02-09 10:46:32',635.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19269,12,12,'2023-02-09 10:46:32',635.420993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19270,12,12,'2023-02-09 10:46:32',635.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19271,12,12,'2023-02-09 10:46:32',635.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19272,12,12,'2023-02-09 10:46:32',636.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19273,12,12,'2023-02-09 10:46:32',636.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19274,12,12,'2023-02-09 10:46:32',636.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19275,12,12,'2023-02-09 10:46:32',636.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19276,12,12,'2023-02-09 10:46:32',637.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19277,12,12,'2023-02-09 10:46:32',637.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19278,12,12,'2023-02-09 10:46:32',637.996617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19279,12,12,'2023-02-09 10:46:32',638.007621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19280,12,12,'2023-02-09 10:46:32',638.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19281,12,12,'2023-02-09 10:46:32',638.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19282,12,12,'2023-02-09 10:46:32',639.018619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19283,12,12,'2023-02-09 10:46:32',639.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19284,12,12,'2023-02-09 10:46:32',639.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19285,12,12,'2023-02-09 10:46:32',639.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19286,12,12,'2023-02-09 10:46:32',640.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19287,12,12,'2023-02-09 10:46:32',640.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19288,12,12,'2023-02-09 10:46:32',640.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19289,12,12,'2023-02-09 10:46:32',640.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19290,12,12,'2023-02-09 10:46:32',641.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19291,12,12,'2023-02-09 10:46:32',641.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19292,12,12,'2023-02-09 10:46:32',641.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19293,12,12,'2023-02-09 10:46:32',641.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19294,12,12,'2023-02-09 10:46:32',642.074618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19295,12,12,'2023-02-09 10:46:32',642.085622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19296,12,12,'2023-02-09 10:46:32',642.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19297,12,12,'2023-02-09 10:46:32',642.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19298,12,12,'2023-02-09 10:46:32',643.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19299,12,12,'2023-02-09 10:46:32',643.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19300,12,12,'2023-02-09 10:46:32',643.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19301,12,12,'2023-02-09 10:46:32',643.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19302,12,12,'2023-02-09 10:46:32',644.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19303,12,12,'2023-02-09 10:46:32',644.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19304,12,12,'2023-02-09 10:46:32',644.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19305,12,12,'2023-02-09 10:46:32',644.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19306,12,12,'2023-02-09 10:46:32',645.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19307,12,12,'2023-02-09 10:46:32',645.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19308,12,12,'2023-02-09 10:46:32',645.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19309,12,12,'2023-02-09 10:46:32',645.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19310,12,12,'2023-02-09 10:46:32',646.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19311,12,12,'2023-02-09 10:46:32',646.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19312,12,12,'2023-02-09 10:46:32',646.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19313,12,12,'2023-02-09 10:46:32',646.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19314,12,12,'2023-02-09 10:46:32',647.175626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19315,12,12,'2023-02-09 10:46:32',647.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19316,12,12,'2023-02-09 10:46:32',647.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19317,12,12,'2023-02-09 10:46:32',647.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19318,12,12,'2023-02-09 10:46:32',648.196622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19319,12,12,'2023-02-09 10:46:32',648.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19320,12,12,'2023-02-09 10:46:32',648.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19321,12,12,'2023-02-09 10:46:32',648.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19322,12,12,'2023-02-09 10:46:32',649.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19323,12,12,'2023-02-09 10:46:32',649.229618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19324,12,12,'2023-02-09 10:46:32',649.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19325,12,12,'2023-02-09 10:46:32',649.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19326,12,12,'2023-02-09 10:46:32',650.235618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19327,12,12,'2023-02-09 10:46:32',650.246621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19328,12,12,'2023-02-09 10:46:32',650.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19329,12,12,'2023-02-09 10:46:32',650.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19330,12,12,'2023-02-09 10:46:32',651.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19331,12,12,'2023-02-09 10:46:32',651.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19332,12,12,'2023-02-09 10:46:32',651.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19333,12,12,'2023-02-09 10:46:32',651.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19334,12,12,'2023-02-09 10:46:32',652.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19335,12,12,'2023-02-09 10:46:32',652.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19336,12,12,'2023-02-09 10:46:32',652.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19337,12,12,'2023-02-09 10:46:32',652.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19338,12,12,'2023-02-09 10:46:32',653.297621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19339,12,12,'2023-02-09 10:46:32',653.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19340,12,12,'2023-02-09 10:46:32',653.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19341,12,12,'2023-02-09 10:46:32',653.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19342,12,12,'2023-02-09 10:46:32',654.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19343,12,12,'2023-02-09 10:46:32',654.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19344,12,12,'2023-02-09 10:46:32',654.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19345,12,12,'2023-02-09 10:46:32',654.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19346,12,12,'2023-02-09 10:46:32',655.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19347,12,12,'2023-02-09 10:46:32',655.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19348,12,12,'2023-02-09 10:46:32',655.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19349,12,12,'2023-02-09 10:46:32',655.821003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19350,12,12,'2023-02-09 10:46:32',656.358618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19351,12,12,'2023-02-09 10:46:32',656.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19352,12,12,'2023-02-09 10:46:32',656.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19353,12,12,'2023-02-09 10:46:32',656.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19354,12,12,'2023-02-09 10:46:32',657.375621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19355,12,12,'2023-02-09 10:46:32',657.386625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19356,12,12,'2023-02-09 10:46:32',657.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19357,12,12,'2023-02-09 10:46:32',657.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19358,12,12,'2023-02-09 10:46:32',658.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19359,12,12,'2023-02-09 10:46:32',658.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19360,12,12,'2023-02-09 10:46:32',658.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19361,12,12,'2023-02-09 10:46:32',658.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19362,12,12,'2023-02-09 10:46:32',659.418619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19363,12,12,'2023-02-09 10:46:32',659.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19364,12,12,'2023-02-09 10:46:32',659.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19365,12,12,'2023-02-09 10:46:32',659.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19366,12,12,'2023-02-09 10:46:32',660.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19367,12,12,'2023-02-09 10:46:32',660.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19368,12,12,'2023-02-09 10:46:32',660.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19369,12,12,'2023-02-09 10:46:32',660.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19370,12,12,'2023-02-09 10:46:32',661.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19371,12,12,'2023-02-09 10:46:32',661.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19372,12,12,'2023-02-09 10:46:32',661.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19373,12,12,'2023-02-09 10:46:32',661.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19374,12,12,'2023-02-09 10:46:32',662.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19375,12,12,'2023-02-09 10:46:32',662.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19376,12,12,'2023-02-09 10:46:32',662.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19377,12,12,'2023-02-09 10:46:32',662.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19378,12,12,'2023-02-09 10:46:32',663.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19379,12,12,'2023-02-09 10:46:32',663.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19380,12,12,'2023-02-09 10:46:32',663.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19381,12,12,'2023-02-09 10:46:32',663.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19382,12,12,'2023-02-09 10:46:32',664.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19383,12,12,'2023-02-09 10:46:32',664.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19384,12,12,'2023-02-09 10:46:32',664.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19385,12,12,'2023-02-09 10:46:32',664.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19386,12,12,'2023-02-09 10:46:32',665.536621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19387,12,12,'2023-02-09 10:46:32',665.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19388,12,12,'2023-02-09 10:46:32',665.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19389,12,12,'2023-02-09 10:46:32',666.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19390,12,12,'2023-02-09 10:46:32',666.558623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19391,12,12,'2023-02-09 10:46:32',666.569617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19392,12,12,'2023-02-09 10:46:32',666.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19393,12,12,'2023-02-09 10:46:32',667.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19394,12,12,'2023-02-09 10:46:32',667.575626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19395,12,12,'2023-02-09 10:46:32',667.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19396,12,12,'2023-02-09 10:46:32',668.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19397,12,12,'2023-02-09 10:46:32',668.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19398,12,12,'2023-02-09 10:46:32',668.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19399,12,12,'2023-02-09 10:46:32',668.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19400,12,12,'2023-02-09 10:46:32',669.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19401,12,12,'2023-02-09 10:46:32',669.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19402,12,12,'2023-02-09 10:46:32',669.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19403,12,12,'2023-02-09 10:46:32',669.629618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19404,12,12,'2023-02-09 10:46:32',670.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19405,12,12,'2023-02-09 10:46:32',670.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19406,12,12,'2023-02-09 10:46:32',670.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19407,12,12,'2023-02-09 10:46:32',670.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19408,12,12,'2023-02-09 10:46:32',671.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19409,12,12,'2023-02-09 10:46:32',671.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19410,12,12,'2023-02-09 10:46:32',671.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19411,12,12,'2023-02-09 10:46:32',671.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19412,12,12,'2023-02-09 10:46:32',672.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19413,12,12,'2023-02-09 10:46:32',672.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19414,12,12,'2023-02-09 10:46:32',672.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19415,12,12,'2023-02-09 10:46:32',672.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19416,12,12,'2023-02-09 10:46:32',673.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19417,12,12,'2023-02-09 10:46:32',673.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19418,12,12,'2023-02-09 10:46:32',673.698616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19419,12,12,'2023-02-09 10:46:32',673.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19420,12,12,'2023-02-09 10:46:32',674.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19421,12,12,'2023-02-09 10:46:32',674.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19422,12,12,'2023-02-09 10:46:32',674.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19423,12,12,'2023-02-09 10:46:32',674.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19424,12,12,'2023-02-09 10:46:32',675.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19425,12,12,'2023-02-09 10:46:32',675.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19426,12,12,'2023-02-09 10:46:32',675.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19427,12,12,'2023-02-09 10:46:32',675.748625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19428,12,12,'2023-02-09 10:46:32',676.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19429,12,12,'2023-02-09 10:46:32',676.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19430,12,12,'2023-02-09 10:46:32',676.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19431,12,12,'2023-02-09 10:46:32',676.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19432,12,12,'2023-02-09 10:46:32',677.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19433,12,12,'2023-02-09 10:46:32',677.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19434,12,12,'2023-02-09 10:46:32',677.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19435,12,12,'2023-02-09 10:46:32',677.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19436,12,12,'2023-02-09 10:46:32',678.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19437,12,12,'2023-02-09 10:46:32',678.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19438,12,12,'2023-02-09 10:46:32',678.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19439,12,12,'2023-02-09 10:46:32',678.808617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19440,12,12,'2023-02-09 10:46:32',679.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19441,12,12,'2023-02-09 10:46:32',679.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19442,12,12,'2023-02-09 10:46:32',679.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19443,12,12,'2023-02-09 10:46:32',679.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19444,12,12,'2023-02-09 10:46:32',680.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19445,12,12,'2023-02-09 10:46:32',680.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19446,12,12,'2023-02-09 10:46:32',680.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19447,12,12,'2023-02-09 10:46:32',680.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19448,12,12,'2023-02-09 10:46:32',681.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19449,12,12,'2023-02-09 10:46:32',681.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19450,12,12,'2023-02-09 10:46:32',681.854617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19451,12,12,'2023-02-09 10:46:32',681.863619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19452,12,12,'2023-02-09 10:46:32',682.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19453,12,12,'2023-02-09 10:46:32',682.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19454,12,12,'2023-02-09 10:46:32',682.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19455,12,12,'2023-02-09 10:46:32',682.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19456,12,12,'2023-02-09 10:46:32',683.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19457,12,12,'2023-02-09 10:46:32',683.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19458,12,12,'2023-02-09 10:46:32',683.898621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19459,12,12,'2023-02-09 10:46:32',683.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19460,12,12,'2023-02-09 10:46:32',684.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19461,12,12,'2023-02-09 10:46:32',684.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19462,12,12,'2023-02-09 10:46:32',684.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19463,12,12,'2023-02-09 10:46:32',684.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19464,12,12,'2023-02-09 10:46:32',685.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19465,12,12,'2023-02-09 10:46:32',685.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19466,12,12,'2023-02-09 10:46:32',685.937617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19467,12,12,'2023-02-09 10:46:32',685.948620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19468,12,12,'2023-02-09 10:46:32',686.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19469,12,12,'2023-02-09 10:46:32',686.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19470,12,12,'2023-02-09 10:46:32',686.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19471,12,12,'2023-02-09 10:46:32',686.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19472,12,12,'2023-02-09 10:46:32',687.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19473,12,12,'2023-02-09 10:46:32',687.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19474,12,12,'2023-02-09 10:46:32',687.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19475,12,12,'2023-02-09 10:46:32',687.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19476,12,12,'2023-02-09 10:46:32',688.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19477,12,12,'2023-02-09 10:46:32',688.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19478,12,12,'2023-02-09 10:46:32',688.994621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19479,13,13,'2023-02-09 11:06:27',0.668997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19480,13,13,'2023-02-09 11:06:27',0.868342,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19481,13,13,'2023-02-09 11:06:27',0.920343,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19482,13,13,'2023-02-09 11:06:27',2.017000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19483,13,13,'2023-02-09 11:06:27',5.987340,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19484,13,13,'2023-02-09 11:06:27',6.087339,0.000000,NULL,'nan',NULL,NULL,'bas+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19485,13,13,'2023-02-09 11:06:27',186.160341,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19486,13,13,'2023-02-09 11:06:27',186.210995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19487,14,14,'2023-02-09 11:12:06',0.683993,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19488,14,14,'2023-02-09 11:12:06',0.884948,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19489,14,14,'2023-02-09 11:12:06',0.934948,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19490,14,14,'2023-02-09 11:12:06',2.018999,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19491,14,14,'2023-02-09 11:12:06',2.033000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19492,14,14,'2023-02-09 11:12:06',2.539994,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19493,14,14,'2023-02-09 11:12:06',4.737950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19494,14,14,'2023-02-09 11:12:06',4.746942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19495,14,14,'2023-02-09 11:12:06',5.019994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19496,14,14,'2023-02-09 11:12:06',5.252944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19497,14,14,'2023-02-09 11:12:06',5.526992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19498,14,14,'2023-02-09 11:12:06',5.748948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19499,14,14,'2023-02-09 11:12:06',5.754943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19500,14,14,'2023-02-09 11:12:06',5.772947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19501,14,14,'2023-02-09 11:12:06',6.046000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19502,14,14,'2023-02-09 11:12:06',6.279945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19503,14,14,'2023-02-09 11:12:06',6.552997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19504,14,14,'2023-02-09 11:12:06',6.774943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19505,14,14,'2023-02-09 11:12:06',6.788945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19506,14,14,'2023-02-09 11:12:06',6.798943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19507,14,14,'2023-02-09 11:12:06',7.073001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19508,14,14,'2023-02-09 11:12:06',7.305950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19509,14,14,'2023-02-09 11:12:06',7.578993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19510,14,14,'2023-02-09 11:12:06',7.800949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19511,14,14,'2023-02-09 11:12:06',7.806944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19512,14,14,'2023-02-09 11:12:06',7.824948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19513,14,14,'2023-02-09 11:12:06',8.098996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19514,14,14,'2023-02-09 11:12:06',8.331946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19515,14,14,'2023-02-09 11:12:06',8.605994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19516,14,14,'2023-02-09 11:12:06',8.826944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19517,14,14,'2023-02-09 11:12:06',8.833945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19518,14,14,'2023-02-09 11:12:06',8.851949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19519,14,14,'2023-02-09 11:12:06',9.125001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19520,14,14,'2023-02-09 11:12:06',9.357951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19521,14,14,'2023-02-09 11:12:06',9.631999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19522,14,14,'2023-02-09 11:12:06',9.852949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19523,14,14,'2023-02-09 11:12:06',9.859950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19524,14,14,'2023-02-09 11:12:06',9.877944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19525,14,14,'2023-02-09 11:12:06',10.151992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19526,14,14,'2023-02-09 11:12:06',10.383946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19527,14,14,'2023-02-09 11:12:06',10.657994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19528,14,14,'2023-02-09 11:12:06',10.878945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19529,14,14,'2023-02-09 11:12:06',10.885945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19530,14,14,'2023-02-09 11:12:06',10.903949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19531,14,14,'2023-02-09 11:12:06',11.177997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19532,14,14,'2023-02-09 11:12:06',11.410947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19533,14,14,'2023-02-09 11:12:06',11.684000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19534,14,14,'2023-02-09 11:12:06',11.905946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19535,14,14,'2023-02-09 11:12:06',11.912946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19536,14,14,'2023-02-09 11:12:06',11.930951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19537,14,14,'2023-02-09 11:12:06',12.203993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19538,14,14,'2023-02-09 11:12:06',12.436943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19539,14,14,'2023-02-09 11:12:06',12.711001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19540,14,14,'2023-02-09 11:12:06',12.931951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19541,14,14,'2023-02-09 11:12:06',12.938951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19542,14,14,'2023-02-09 11:12:06',12.956946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19543,14,14,'2023-02-09 11:12:06',13.229998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19544,14,14,'2023-02-09 11:12:06',13.463944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19545,14,14,'2023-02-09 11:12:06',13.736996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19546,14,14,'2023-02-09 11:12:06',13.957946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19547,14,14,'2023-02-09 11:12:06',13.964947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19548,14,14,'2023-02-09 11:12:06',13.982951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19549,14,14,'2023-02-09 11:12:06',14.256999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19550,14,14,'2023-02-09 11:12:06',14.489949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19551,14,14,'2023-02-09 11:12:06',14.763001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19552,14,14,'2023-02-09 11:12:06',14.984947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19553,14,14,'2023-02-09 11:12:06',14.991948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19554,14,14,'2023-02-09 11:12:06',15.009942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19555,14,14,'2023-02-09 11:12:06',15.282994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19556,14,14,'2023-02-09 11:12:06',15.515944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19557,14,14,'2023-02-09 11:12:06',15.790002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19558,14,14,'2023-02-09 11:12:06',16.010942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19559,14,14,'2023-02-09 11:12:06',16.017943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19560,14,14,'2023-02-09 11:12:06',16.035947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19561,14,14,'2023-02-09 11:12:06',16.309000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19562,14,14,'2023-02-09 11:12:06',16.541949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19563,14,14,'2023-02-09 11:12:06',16.815997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19564,14,14,'2023-02-09 11:12:06',17.036948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19565,14,14,'2023-02-09 11:12:06',17.043948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19566,14,14,'2023-02-09 11:12:06',17.061943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19567,14,14,'2023-02-09 11:12:06',17.336001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19568,14,14,'2023-02-09 11:12:06',17.567945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19569,14,14,'2023-02-09 11:12:06',17.841993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19570,14,14,'2023-02-09 11:12:06',18.062943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19571,14,14,'2023-02-09 11:12:06',18.069944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19572,14,14,'2023-02-09 11:12:06',18.087948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19573,14,14,'2023-02-09 11:12:06',18.361996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19574,14,14,'2023-02-09 11:12:06',18.594946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19575,14,14,'2023-02-09 11:12:06',18.868994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19576,14,14,'2023-02-09 11:12:06',19.088948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19577,14,14,'2023-02-09 11:12:06',19.095949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19578,14,14,'2023-02-09 11:12:06',19.113943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19579,14,14,'2023-02-09 11:12:06',19.388001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19580,14,14,'2023-02-09 11:12:06',19.620951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19581,14,14,'2023-02-09 11:12:06',19.894999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19582,14,14,'2023-02-09 11:12:06',20.115949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19583,14,14,'2023-02-09 11:12:06',20.122950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19584,14,14,'2023-02-09 11:12:06',20.140944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19585,14,14,'2023-02-09 11:12:06',20.414992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19586,14,14,'2023-02-09 11:12:06',20.646946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19587,14,14,'2023-02-09 11:12:06',20.920994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19588,14,14,'2023-02-09 11:12:06',21.141945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19589,14,14,'2023-02-09 11:12:06',21.148945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19590,14,14,'2023-02-09 11:12:06',21.166949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19591,14,14,'2023-02-09 11:12:06',21.440997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19592,14,14,'2023-02-09 11:12:06',21.673947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19593,14,14,'2023-02-09 11:12:06',21.947995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19594,14,14,'2023-02-09 11:12:06',22.168946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19595,14,14,'2023-02-09 11:12:06',22.174950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19596,14,14,'2023-02-09 11:12:06',22.192945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19597,14,14,'2023-02-09 11:12:06',22.466993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19598,14,14,'2023-02-09 11:12:06',22.699943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19599,14,14,'2023-02-09 11:12:06',22.974001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19600,14,14,'2023-02-09 11:12:06',23.194951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19601,14,14,'2023-02-09 11:12:06',23.201952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19602,14,14,'2023-02-09 11:12:06',23.219946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19603,14,14,'2023-02-09 11:12:06',23.492998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19604,14,14,'2023-02-09 11:12:06',23.725948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19605,14,14,'2023-02-09 11:12:06',23.999996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19606,14,14,'2023-02-09 11:12:06',24.220946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19607,14,14,'2023-02-09 11:12:06',24.227947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19608,14,14,'2023-02-09 11:12:06',24.245951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19609,14,14,'2023-02-09 11:12:06',24.519999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19610,14,14,'2023-02-09 11:12:06',24.751943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19611,14,14,'2023-02-09 11:12:06',25.026001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19612,14,14,'2023-02-09 11:12:06',25.246952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19613,14,14,'2023-02-09 11:12:06',25.253942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19614,14,14,'2023-02-09 11:12:06',25.271946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19615,14,14,'2023-02-09 11:12:06',25.545994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19616,14,14,'2023-02-09 11:12:06',25.777948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19617,14,14,'2023-02-09 11:12:06',26.052992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19618,14,14,'2023-02-09 11:12:06',26.273943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19619,14,14,'2023-02-09 11:12:06',26.280943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19620,14,14,'2023-02-09 11:12:06',26.297942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19621,14,14,'2023-02-09 11:12:06',26.572000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19622,14,14,'2023-02-09 11:12:06',26.804949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19623,14,14,'2023-02-09 11:12:06',27.078997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19624,14,14,'2023-02-09 11:12:06',27.299948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19625,14,14,'2023-02-09 11:12:06',27.306948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19626,14,14,'2023-02-09 11:12:06',27.324943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19627,14,14,'2023-02-09 11:12:06',27.599001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19628,14,14,'2023-02-09 11:12:06',27.830945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19629,14,14,'2023-02-09 11:12:06',28.103997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19630,14,14,'2023-02-09 11:12:06',28.325943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19631,14,14,'2023-02-09 11:12:06',28.332944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19632,14,14,'2023-02-09 11:12:06',28.350948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19633,14,14,'2023-02-09 11:12:06',28.624996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19634,14,14,'2023-02-09 11:12:06',28.856950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19635,14,14,'2023-02-09 11:12:06',29.130998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19636,14,14,'2023-02-09 11:12:06',29.351948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19637,14,14,'2023-02-09 11:12:06',29.358949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19638,14,14,'2023-02-09 11:12:06',29.376943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19639,14,14,'2023-02-09 11:12:06',29.651001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19640,14,14,'2023-02-09 11:12:06',29.883951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19641,14,14,'2023-02-09 11:12:06',30.156993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19642,14,14,'2023-02-09 11:12:06',30.378949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19643,14,14,'2023-02-09 11:12:06',30.385950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19644,14,14,'2023-02-09 11:12:06',30.403944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19645,14,14,'2023-02-09 11:12:06',30.677992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19646,14,14,'2023-02-09 11:12:06',30.909946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19647,14,14,'2023-02-09 11:12:06',31.182999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19648,14,14,'2023-02-09 11:12:06',31.404945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19649,14,14,'2023-02-09 11:12:06',31.411945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19650,14,14,'2023-02-09 11:12:06',31.429950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19651,14,14,'2023-02-09 11:12:06',31.703002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19652,14,14,'2023-02-09 11:12:06',31.935952,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19653,14,14,'2023-02-09 11:12:06',32.210000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19654,14,14,'2023-02-09 11:12:06',32.430950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19655,14,14,'2023-02-09 11:12:06',32.437951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19656,14,14,'2023-02-09 11:12:06',32.455945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19657,14,14,'2023-02-09 11:12:06',32.728997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19658,14,14,'2023-02-09 11:12:06',32.961947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19659,14,14,'2023-02-09 11:12:06',33.235995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19660,14,14,'2023-02-09 11:12:06',33.456945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19661,14,14,'2023-02-09 11:12:06',33.463946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19662,14,14,'2023-02-09 11:12:06',33.481950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19663,14,14,'2023-02-09 11:12:06',33.755998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19664,14,14,'2023-02-09 11:12:06',33.988948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19665,14,14,'2023-02-09 11:12:06',34.262000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19666,14,14,'2023-02-09 11:12:06',34.483946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19667,14,14,'2023-02-09 11:12:06',34.490947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19668,14,14,'2023-02-09 11:12:06',34.507945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19669,14,14,'2023-02-09 11:12:06',34.781993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19670,14,14,'2023-02-09 11:12:06',35.014943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19671,14,14,'2023-02-09 11:12:06',35.287995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19672,14,14,'2023-02-09 11:12:06',35.509952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19673,14,14,'2023-02-09 11:12:06',35.516942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19674,14,14,'2023-02-09 11:12:06',35.534946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19675,14,14,'2023-02-09 11:12:06',35.807999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19676,14,14,'2023-02-09 11:12:06',36.040948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19677,14,14,'2023-02-09 11:12:06',36.314996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19678,14,14,'2023-02-09 11:12:06',36.535947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19679,14,14,'2023-02-09 11:12:06',36.542947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19680,14,14,'2023-02-09 11:12:06',36.560952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19681,14,14,'2023-02-09 11:12:06',36.833994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19682,14,14,'2023-02-09 11:12:06',37.066944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19683,14,14,'2023-02-09 11:12:06',37.341002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19684,14,14,'2023-02-09 11:12:06',37.561942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19685,14,14,'2023-02-09 11:12:06',37.568943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19686,14,14,'2023-02-09 11:12:06',37.586947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19687,14,14,'2023-02-09 11:12:06',37.860995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19688,14,14,'2023-02-09 11:12:06',38.093945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19689,14,14,'2023-02-09 11:12:06',38.366997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19690,14,14,'2023-02-09 11:12:06',38.588943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19691,14,14,'2023-02-09 11:12:06',38.595944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19692,14,14,'2023-02-09 11:12:06',38.613948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19693,14,14,'2023-02-09 11:12:06',38.887000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19694,14,14,'2023-02-09 11:12:06',39.119950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19695,14,14,'2023-02-09 11:12:06',39.393998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19696,14,14,'2023-02-09 11:12:06',39.614948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19697,14,14,'2023-02-09 11:12:06',39.621949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19698,14,14,'2023-02-09 11:12:06',39.639943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19699,14,14,'2023-02-09 11:12:06',39.912995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19700,14,14,'2023-02-09 11:12:06',40.145945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19701,14,14,'2023-02-09 11:12:06',40.419993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19702,14,14,'2023-02-09 11:12:06',40.640944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19703,14,14,'2023-02-09 11:12:06',40.647944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19704,14,14,'2023-02-09 11:12:06',40.665949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19705,14,14,'2023-02-09 11:12:06',40.939997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19706,14,14,'2023-02-09 11:12:06',41.172946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19707,14,14,'2023-02-09 11:12:06',41.445999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19708,14,14,'2023-02-09 11:12:06',41.666949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19709,14,14,'2023-02-09 11:12:06',41.673950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19710,14,14,'2023-02-09 11:12:06',41.692950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19711,14,14,'2023-02-09 11:12:06',41.966002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19712,14,14,'2023-02-09 11:12:06',42.198942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19713,14,14,'2023-02-09 11:12:06',42.473000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19714,14,14,'2023-02-09 11:12:06',42.693950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19715,14,14,'2023-02-09 11:12:06',42.700951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19716,14,14,'2023-02-09 11:12:06',42.718945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19717,14,14,'2023-02-09 11:12:06',42.991997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19718,14,14,'2023-02-09 11:12:06',43.224947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19719,14,14,'2023-02-09 11:12:06',43.498995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19720,14,14,'2023-02-09 11:12:06',43.719945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19721,14,14,'2023-02-09 11:12:06',43.726946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19722,14,14,'2023-02-09 11:12:06',43.744950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19723,14,14,'2023-02-09 11:12:06',44.018998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19724,14,14,'2023-02-09 11:12:06',44.251948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19725,14,14,'2023-02-09 11:12:06',44.525000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19726,14,14,'2023-02-09 11:12:06',44.745951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19727,14,14,'2023-02-09 11:12:06',44.752951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19728,14,14,'2023-02-09 11:12:06',44.770945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19729,14,14,'2023-02-09 11:12:06',45.044993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19730,14,14,'2023-02-09 11:12:06',45.277943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19731,14,14,'2023-02-09 11:12:06',45.552001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19732,14,14,'2023-02-09 11:12:06',45.771946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19733,14,14,'2023-02-09 11:12:06',45.778946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19734,14,14,'2023-02-09 11:12:06',45.796951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19735,14,14,'2023-02-09 11:12:06',46.070999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19736,14,14,'2023-02-09 11:12:06',46.303949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19737,14,14,'2023-02-09 11:12:06',46.577997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19738,14,14,'2023-02-09 11:12:06',46.798947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19739,14,14,'2023-02-09 11:12:06',46.804952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19740,14,14,'2023-02-09 11:12:06',46.823942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19741,14,14,'2023-02-09 11:12:06',47.096994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19742,14,14,'2023-02-09 11:12:06',47.329944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19743,14,14,'2023-02-09 11:12:06',47.604002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19744,14,14,'2023-02-09 11:12:06',47.824942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19745,14,14,'2023-02-09 11:12:06',47.831943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19746,14,14,'2023-02-09 11:12:06',47.849947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19747,14,14,'2023-02-09 11:12:06',48.123995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19748,14,14,'2023-02-09 11:12:06',48.356945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19749,14,14,'2023-02-09 11:12:06',48.629997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19750,14,14,'2023-02-09 11:12:06',48.851943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19751,14,14,'2023-02-09 11:12:06',48.857948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19752,14,14,'2023-02-09 11:12:06',48.876948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19753,14,14,'2023-02-09 11:12:06',49.150000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19754,14,14,'2023-02-09 11:12:06',49.382950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19755,14,14,'2023-02-09 11:12:06',49.656998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19756,14,14,'2023-02-09 11:12:06',49.877948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19757,14,14,'2023-02-09 11:12:06',49.883943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19758,14,14,'2023-02-09 11:12:06',49.902943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19759,14,14,'2023-02-09 11:12:06',50.175996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19760,14,14,'2023-02-09 11:12:06',50.408945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19761,14,14,'2023-02-09 11:12:06',50.682993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19762,14,14,'2023-02-09 11:12:06',50.903944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19763,14,14,'2023-02-09 11:12:06',50.910944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19764,14,14,'2023-02-09 11:12:06',50.928949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19765,14,14,'2023-02-09 11:12:06',51.202997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19766,14,14,'2023-02-09 11:12:06',51.434951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19767,14,14,'2023-02-09 11:12:06',51.708999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19768,14,14,'2023-02-09 11:12:06',51.929949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19769,14,14,'2023-02-09 11:12:06',51.936950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19770,14,14,'2023-02-09 11:12:06',51.954944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19771,14,14,'2023-02-09 11:12:06',52.228992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19772,14,14,'2023-02-09 11:12:06',52.460946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19773,14,14,'2023-02-09 11:12:06',52.736000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19774,14,14,'2023-02-09 11:12:06',52.955944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19775,14,14,'2023-02-09 11:12:06',52.962945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19776,14,14,'2023-02-09 11:12:06',52.980949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19777,14,14,'2023-02-09 11:12:06',53.254997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19778,14,14,'2023-02-09 11:12:06',53.487947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19779,14,14,'2023-02-09 11:12:06',53.760999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19780,14,14,'2023-02-09 11:12:06',53.981950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19781,14,14,'2023-02-09 11:12:06',53.988950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19782,14,14,'2023-02-09 11:12:06',54.006944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19783,14,14,'2023-02-09 11:12:06',54.281998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19784,14,14,'2023-02-09 11:12:06',54.513942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19785,14,14,'2023-02-09 11:12:06',54.786994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19786,14,14,'2023-02-09 11:12:06',55.008951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19787,14,14,'2023-02-09 11:12:06',55.014945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19788,14,14,'2023-02-09 11:12:06',55.033945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19789,14,14,'2023-02-09 11:12:06',55.307993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19790,14,14,'2023-02-09 11:12:06',55.539948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19791,14,14,'2023-02-09 11:12:06',55.813996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19792,14,14,'2023-02-09 11:12:06',56.034946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19793,14,14,'2023-02-09 11:12:06',56.041946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19794,14,14,'2023-02-09 11:12:06',56.059951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19795,14,14,'2023-02-09 11:12:06',56.333999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19796,14,14,'2023-02-09 11:12:06',56.566949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19797,14,14,'2023-02-09 11:12:06',56.840001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19798,14,14,'2023-02-09 11:12:06',57.060951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19799,14,14,'2023-02-09 11:12:06',57.067942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19800,14,14,'2023-02-09 11:12:06',57.086952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19801,14,14,'2023-02-09 11:12:06',57.361000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19802,14,14,'2023-02-09 11:12:06',57.592944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19803,14,14,'2023-02-09 11:12:06',57.865996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19804,14,14,'2023-02-09 11:12:06',58.087942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19805,14,14,'2023-02-09 11:12:06',58.094943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19806,14,14,'2023-02-09 11:12:06',58.112947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19807,14,14,'2023-02-09 11:12:06',58.385999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19808,14,14,'2023-02-09 11:12:06',58.618949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19809,14,14,'2023-02-09 11:12:06',58.892997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19810,14,14,'2023-02-09 11:12:06',59.113947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19811,14,14,'2023-02-09 11:12:06',59.120948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19812,14,14,'2023-02-09 11:12:06',59.138942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19813,14,14,'2023-02-09 11:12:06',59.411995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19814,14,14,'2023-02-09 11:12:06',59.644944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19815,14,14,'2023-02-09 11:12:06',59.918992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19816,14,14,'2023-02-09 11:12:06',60.139943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19817,14,14,'2023-02-09 11:12:06',60.146943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19818,14,14,'2023-02-09 11:12:06',60.164948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19819,14,14,'2023-02-09 11:12:06',60.438000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19820,14,14,'2023-02-09 11:12:06',60.671945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19821,14,14,'2023-02-09 11:12:06',60.944998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19822,14,14,'2023-02-09 11:12:06',61.165948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19823,14,14,'2023-02-09 11:12:06',61.172949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19824,14,14,'2023-02-09 11:12:06',61.190943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19825,14,14,'2023-02-09 11:12:06',61.465001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19826,14,14,'2023-02-09 11:12:06',61.697951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19827,14,14,'2023-02-09 11:12:06',61.970993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19828,14,14,'2023-02-09 11:12:06',62.192949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19829,14,14,'2023-02-09 11:12:06',62.199950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19830,14,14,'2023-02-09 11:12:06',62.217944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19831,14,14,'2023-02-09 11:12:06',62.490996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19832,14,14,'2023-02-09 11:12:06',62.723946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19833,14,14,'2023-02-09 11:12:06',62.997994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19834,14,14,'2023-02-09 11:12:06',63.218944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19835,14,14,'2023-02-09 11:12:06',63.225945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19836,14,14,'2023-02-09 11:12:06',63.243949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19837,14,14,'2023-02-09 11:12:06',63.517001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19838,14,14,'2023-02-09 11:12:06',63.749951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19839,14,14,'2023-02-09 11:12:06',64.023999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19840,14,14,'2023-02-09 11:12:06',64.244950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19841,14,14,'2023-02-09 11:12:06',64.251950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19842,14,14,'2023-02-09 11:12:06',64.269944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19843,14,14,'2023-02-09 11:12:06',64.543992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19844,14,14,'2023-02-09 11:12:06',64.776942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19845,14,14,'2023-02-09 11:12:06',65.049995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19846,14,14,'2023-02-09 11:12:06',65.270945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19847,14,14,'2023-02-09 11:12:06',65.277945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19848,14,14,'2023-02-09 11:12:06',65.296945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19849,14,14,'2023-02-09 11:12:06',65.569998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19850,14,14,'2023-02-09 11:12:06',65.802948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19851,14,14,'2023-02-09 11:12:06',66.076996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19852,14,14,'2023-02-09 11:12:06',66.297946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; diff --git a/src/Data/Query/SQLQueryEngine.php b/src/Data/Query/SQLQueryEngine.php index f58dda1ee9b..efdd13b9c73 100644 --- a/src/Data/Query/SQLQueryEngine.php +++ b/src/Data/Query/SQLQueryEngine.php @@ -538,12 +538,11 @@ protected function createTemporaryCandIDTable(\Database $DB, string $tablename, );" ); - $insertstmt = "INSERT INTO $tablename VALUES (:CandID)"; - $q = $DB->prepare($insertstmt); - foreach ($candidates as $candidate) { - $q->execute(['CandID' => $candidate]); - } + $insertstmt = "INSERT INTO $tablename VALUES" + . " (" . join('),(', $candidates) . ')'; + $q = $DB->prepare($insertstmt); + $q->execute([]); } protected $useBufferedQuery = true; diff --git a/tools/exporters/data_dictionary_builder.php b/tools/exporters/data_dictionary_builder.php index 8ffaab279f2..ade314778a0 100755 --- a/tools/exporters/data_dictionary_builder.php +++ b/tools/exporters/data_dictionary_builder.php @@ -51,9 +51,12 @@ $instrumentParameterTypeCategoryIDs = []; $instrumentParameterTypeIDs = []; - $parameter_types = $DB->pselectColWithIndexKey( - "Select Name, ParameterTypeID from parameter_type", + "SELECT pt.Name, pt.ParameterTypeID + FROM parameter_type pt + JOIN parameter_type_category_rel ptcr USING (ParameterTypeID) + JOIN parameter_type_category ptc USING (ParameterTypeCategoryID) + WHERE ptc.Type = 'Instrument'", [], "Name" );