2 -- Comment Meta Language Constructs:
5 -- argument: table_name
6 -- behavior: if the table_name does not exist, the block will be executed
9 -- argument: table_name
10 -- behavior: if the table_name does exist, the block will be executed
13 -- arguments: table_name colname
14 -- behavior: if the table and column exist, the block will be executed
17 -- arguments: table_name colname
18 -- behavior: if the table exists but the column does not, the block will be executed
21 -- arguments: table_name colname value
22 -- behavior: If the table table_name does not have a column colname with a data type equal to value, then the block will be executed
25 -- arguments: table_name colname value
26 -- behavior: If the table table_name does not have a row where colname = value, the block will be executed.
29 -- arguments: table_name colname value colname2 value2
30 -- behavior: If the table table_name does not have a row where colname = value AND colname2 = value2, the block will be executed.
33 -- arguments: table_name colname value colname2 value2 colname3 value3
34 -- behavior: If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
37 -- arguments: table_name colname value colname2 value2 colname3 value3 colname4 value4
38 -- behavior: If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3 AND colname4 = value4, the block will be executed.
41 -- desc: This is a very specialized function to allow adding items to the list_options table to avoid both redundant option_id and title in each element.
42 -- arguments: table_name colname value colname2 value2 colname3 value3
43 -- behavior: The block will be executed if both statements below are true:
44 -- 1) The table table_name does not have a row where colname = value AND colname2 = value2.
45 -- 2) The table table_name does not have a row where colname = value AND colname3 = value3.
48 -- arguments: table_name colname value colname2 value2
49 -- behavior: If the table table_name does have a row where colname = value AND colname2 = value2, the block will be executed.
52 -- arguments: table_name colname value colname2 value2 colname3 value3
53 -- behavior: If the table table_name does have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
56 -- desc: This function is most often used for dropping of indexes/keys.
57 -- arguments: table_name colname
58 -- behavior: If the table and index exist the relevant statements are executed, otherwise not.
61 -- desc: This function will allow adding of indexes/keys.
62 -- arguments: table_name colname
63 -- behavior: If the index does not exist, it will be created
66 -- all blocks are terminated with a #EndIf statement.
69 -- Custom function for creating Reaction List
71 -- #IfNotListOccupation
72 -- Custom function for creating Occupation List
74 #IfNotIndex form_encounter encounter_date
75 CREATE INDEX encounter_date on form_encounter (`date`);
78 #IfNotColumnType prescriptions size varchar(16)
79 ALTER TABLE `prescriptions` CHANGE `size` `size` varchar(16) DEFAULT NULL;
82 #IfNotRow globals gl_name erx_newcrop_path
83 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path' WHERE `gl_name` = 'erx_path_production';
86 #IfNotRow globals gl_name erx_newcrop_path_soap
87 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path_soap' WHERE `gl_name` = 'erx_path_soap_production';
90 #IfNotRow globals gl_name erx_account_partner_name
91 UPDATE `globals` SET `gl_name` = 'erx_account_partner_name' WHERE `gl_name` = 'partner_name_production';
94 #IfNotRow globals gl_name erx_account_name
95 UPDATE `globals` SET `gl_name` = 'erx_account_name' WHERE `gl_name` = 'erx_name_production';
98 #IfNotRow globals gl_name erx_account_password
99 UPDATE `globals` SET `gl_name` = 'erx_account_password' WHERE `gl_name` = 'erx_password_production';
102 #IfNotColumnType lang_custom constant_name mediumtext
103 ALTER TABLE `lang_custom` CHANGE `constant_name` `constant_name` mediumtext NOT NULL default '';
106 #IfNotTable patient_tracker
107 CREATE TABLE `patient_tracker` (
108 `id` bigint(20) NOT NULL auto_increment,
109 `date` datetime DEFAULT NULL,
110 `apptdate` date DEFAULT NULL,
111 `appttime` time DEFAULT NULL,
112 `eid` bigint(20) NOT NULL default '0',
113 `pid` bigint(20) NOT NULL default '0',
114 `original_user` varchar(255) NOT NULL default '' COMMENT 'This is the user that created the original record',
115 `encounter` bigint(20) NOT NULL default '0',
116 `lastseq` varchar(4) NOT NULL default '' COMMENT 'The element file should contain this number of elements',
117 `random_drug_test` TINYINT(1) DEFAULT NULL COMMENT 'NULL if not randomized. If randomized, 0 is no, 1 is yes',
118 `drug_screen_completed` TINYINT(1) NOT NULL DEFAULT '0',
122 ) ENGINE=MyISAM AUTO_INCREMENT=1;
125 #IfNotTable patient_tracker_element
126 CREATE TABLE `patient_tracker_element` (
127 `pt_tracker_id` bigint(20) NOT NULL default '0' COMMENT 'maps to id column in patient_tracker table',
128 `start_datetime` datetime DEFAULT NULL,
129 `room` varchar(20) NOT NULL default '',
130 `status` varchar(31) NOT NULL default '',
131 `seq` varchar(4) NOT NULL default '' COMMENT 'This is a numerical sequence for this pt_tracker_id events',
132 `user` varchar(255) NOT NULL default '' COMMENT 'This is the user that created this element',
133 KEY (`pt_tracker_id`,`seq`)
137 #IfMissingColumn openemr_postcalendar_events pc_room
138 ALTER TABLE `openemr_postcalendar_events` ADD `pc_room` varchar(20) NOT NULL DEFAULT '' ;
141 #IfMissingColumn list_options toggle_setting_1
142 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_1` tinyint(1) NOT NULL default '0';
143 UPDATE `list_options` SET `notes`='FF2414|10' , `toggle_setting_1`='1' WHERE `option_id`='@' AND `list_id` = 'apptstat';
144 UPDATE `list_options` SET `notes`='FF6619|10' , `toggle_setting_1`='1' WHERE `option_id`='~' AND `list_id` = 'apptstat';
147 #IfMissingColumn list_options toggle_setting_2
148 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_2` tinyint(1) NOT NULL DEFAULT '0';
149 UPDATE `list_options` SET `notes`='0BBA34|0' , `toggle_setting_2`='1' WHERE `option_id`='!' AND `list_id` = 'apptstat';
150 UPDATE `list_options` SET `notes`='FEFDCF|0' , `toggle_setting_2`='1' WHERE `option_id`='>' AND `list_id` = 'apptstat';
151 UPDATE `list_options` SET `notes`='FEFDCF|0' WHERE `option_id`='-' AND `list_id` = 'apptstat';
152 UPDATE `list_options` SET `notes`='FFC9F8|0' WHERE `option_id`='*' AND `list_id` = 'apptstat';
153 UPDATE `list_options` SET `notes`='87FF1F|0' WHERE `option_id`='+' AND `list_id` = 'apptstat';
154 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='x' AND `list_id` = 'apptstat';
155 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='?' AND `list_id` = 'apptstat';
156 UPDATE `list_options` SET `notes`='FFFF2B|0' WHERE `option_id`='#' AND `list_id` = 'apptstat';
157 UPDATE `list_options` SET `notes`='52D9DE|10' WHERE `option_id`='<' AND `list_id` = 'apptstat';
158 UPDATE `list_options` SET `notes`='C0FF96|0' WHERE `option_id`='$' AND `list_id` = 'apptstat';
159 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='%' AND `list_id` = 'apptstat';
162 #IfNotRow2D list_options list_id lists option_id patient_flow_board_rooms
163 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','patient_flow_board_rooms','Patient Flow Board Rooms');
164 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '1', 'Room 1', 10);
165 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '2', 'Room 2', 20);
166 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '3', 'Room 3', 30);
169 #IfMissingColumn clinical_rules developer
170 ALTER TABLE `clinical_rules` ADD `developer` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Developer';
173 #IfMissingColumn clinical_rules funding_source
174 ALTER TABLE `clinical_rules` ADD `funding_source` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Funding Source';
177 #IfMissingColumn clinical_rules release_version
178 ALTER TABLE `clinical_rules` ADD `release_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Release Version';
181 #IfNotRow2D list_options list_id proc_res_abnormal option_id vhigh
182 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vhigh', 'Above upper panic limits', 50);
185 #IfNotRow2D list_options list_id proc_res_abnormal option_id vlow
186 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vlow', 'Below lower panic limits', 60);
189 #IfNotRow code_types ct_key LOINC
190 DROP TABLE IF EXISTS `temp_table_one`;
191 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
192 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
193 IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
194 IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
195 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('LOINC', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'LOINC', 0, 0, 0, 0, 0);
196 DROP TABLE `temp_table_one`;
199 #IfNotRow code_types ct_key PHIN Questions
200 DROP TABLE IF EXISTS `temp_table_one`;
201 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
202 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
203 IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
204 IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
205 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('PHIN Questions', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'PHIN Questions', 0, 0, 0, 0, 0);
206 DROP TABLE `temp_table_one`;
209 #IfMissingColumn list_options activity
210 ALTER TABLE `list_options` ADD COLUMN `activity` TINYINT DEFAULT 1 NOT NULL;
213 #IfNotTable ccda_components
214 CREATE TABLE ccda_components (
215 ccda_components_id int(11) NOT NULL AUTO_INCREMENT,
216 ccda_components_field varchar(100) DEFAULT NULL,
217 ccda_components_name varchar(100) DEFAULT NULL,
218 PRIMARY KEY (ccda_components_id)
219 ) ENGINE=InnoDB AUTO_INCREMENT=10 ;
220 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('1','progress_note','Progress Notes');
221 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('2','consultation_note','Consultation Note');
222 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('3','continuity_care_document','Continuity Care Document');
223 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('4','diagnostic_image_reporting','Diagnostic Image Reporting');
224 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('5','discharge_summary','Discharge Summary');
225 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('6','history_physical_note','History and Physical Note');
226 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('7','operative_note','Operative Note');
227 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('8','procedure_note','Procedure Note');
228 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('9','unstructured_document','Unstructured Document');
231 #IfNotTable ccda_sections
232 CREATE TABLE ccda_sections (
233 ccda_sections_id int(11) NOT NULL AUTO_INCREMENT,
234 ccda_components_id int(11) DEFAULT NULL,
235 ccda_sections_field varchar(100) DEFAULT NULL,
236 ccda_sections_name varchar(100) DEFAULT NULL,
237 ccda_sections_req_mapping tinyint(4) NOT NULL DEFAULT '1',
238 PRIMARY KEY (ccda_sections_id)
239 ) ENGINE=InnoDB AUTO_INCREMENT=46;
240 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('1','1','assessment_plan','Assessment and Plan','1');
241 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('2','2','assessment_plan','Assessment and Plan','1');
242 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('3','2','history_of_present_illness','History of Present Illness','1');
243 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('4','2','physical_exam','Physical Exam','1');
244 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('5','2','reason_of_visit','Reason for Referral/Reason for Visit','1');
245 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('6','3','allergies','Allergies','0');
246 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('7','3','medications','Medications','0');
247 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('8','3','problem_list','Problem List','0');
248 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('9','3','procedures','Procedures','0');
249 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('10','3','results','Results','0');
250 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('11','4','report','Report','0');
251 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('12','5','allergies','Allergies','0');
252 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('13','5','hospital_course','Hospital Course','0');
253 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('14','5','hospital_discharge_diagnosis','Hospital Discharge Diagnosis','0');
254 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('15','5','hospital_discharge_medications','Hospital Discharge Medications','0');
255 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('16','5','plan_of_care','Plan of Care','1');
256 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('17','6','allergies','Allergies','0');
257 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('19','6','chief_complaint','Chief Complaint / Reason for Visit','1');
258 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('21','6','family_history','Family History','1');
259 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('22','6','general_status','General Status','1');
260 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('23','6','hpi_past_med','History of Past Illness (Past Medical History)','1');
261 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('24','6','hpi','History of Present Illness','1');
262 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('25','6','medications','Medications','0');
263 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('26','6','physical_exam','Physical Exam','1');
264 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('28','6','results','Results','0');
265 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('29','6','review_of_systems','Review of Systems','1');
266 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('30','6','social_history','Social History','1');
267 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('31','6','vital_signs','Vital Signs','0');
268 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('32','7','anesthesia','Anesthesia','1');
269 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('33','7','complications','Complications','1');
270 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('34','7','post_operative_diagnosis','Post Operative Diagnosis','0');
271 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('35','7','pre_operative_diagnosis','Pre Operative Diagnosis','0');
272 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('36','7','procedure_estimated_blood_loss','Procedure Estimated Blood Loss','0');
273 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('37','7','procedure_findings','Procedure Findings','0');
274 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('38','7','procedure_specimens_taken','Procedure Specimens Taken','0');
275 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('39','7','procedure_description','Procedure Description','1');
276 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('40','8','assessment_plan','Assessment and Plan','1');
277 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('41','8','complications','Complications','1');
278 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('42','8','postprocedure_diagnosis','Postprocedure Diagnosis','0');
279 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('43','8','procedure_description','Procedure Description','0');
280 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('44','8','procedure_indications','Procedure Indications','0');
281 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('45','9','unstructured_doc','Document','0');
284 #IfNotTable ccda_table_mapping
285 CREATE TABLE ccda_table_mapping (
286 id int(11) NOT NULL AUTO_INCREMENT,
287 ccda_component varchar(100) DEFAULT NULL,
288 ccda_component_section varchar(100) DEFAULT NULL,
289 form_dir varchar(100) DEFAULT NULL,
290 form_type smallint(6) DEFAULT NULL,
291 form_table varchar(100) DEFAULT NULL,
292 user_id int(11) DEFAULT NULL,
293 deleted tinyint(4) NOT NULL DEFAULT '0',
294 timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
296 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
299 #IfNotTable ccda_field_mapping
300 CREATE TABLE ccda_field_mapping (
301 id int(11) NOT NULL AUTO_INCREMENT,
302 table_id int(11) DEFAULT NULL,
303 ccda_field varchar(100) DEFAULT NULL,
305 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
310 id INT(11) NOT NULL AUTO_INCREMENT,
311 pid BIGINT(20) DEFAULT NULL,
312 encounter BIGINT(20) DEFAULT NULL,
313 ccda_data MEDIUMTEXT,
314 time VARCHAR(50) DEFAULT NULL,
315 status SMALLINT(6) DEFAULT NULL,
316 updated_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
317 user_id VARCHAR(50) null,
318 couch_docid VARCHAR(100) NULL,
319 couch_revid VARCHAR(100) NULL,
320 `view` tinyint(4) NOT NULL DEFAULT '0',
321 `transfer` tinyint(4) NOT NULL DEFAULT '0',
323 `emr_transfer` tinyint(4) NOT NULL DEFAULT '0',
325 UNIQUE KEY unique_key (pid,encounter,time)
326 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
329 #IfNotRow2D list_options list_id lists option_id religious_affiliation
330 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','religious_affiliation','Religious Affiliation');
331 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','adventist','1001','Adventist','5');
332 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','african_religions','1002','African Religions','15');
333 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','afro-caribbean_religions','1003','Afro-Caribbean Religions','25');
334 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','agnosticism','1004','Agnosticism','35');
335 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','anglican','1005','Anglican','45');
336 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','animism','1006','Animism','55');
337 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','assembly_of_god','1061','Assembly of God','65');
338 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','atheism','1007','Atheism','75');
339 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','babi_bahai_faiths','1008','Babi & Baha\'I faiths','85');
340 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','baptist','1009','Baptist','95');
341 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','bon','1010','Bon','105');
342 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','brethren','1062','Brethren','115');
343 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cao_dai','1011','Cao Dai','125');
344 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','celticism','1012','Celticism','135');
345 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christiannoncatholicnonspecifc','1013','Christian (non-Catholic, non-specific)','145');
346 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christian_scientist','1063','Christian Scientist','155');
347 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_christ','1064','Church of Christ','165');
348 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_god','1065','Church of God','175');
349 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','confucianism','1014','Confucianism','185');
350 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','congregational','1066','Congregational','195');
351 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cyberculture_religions','1015','Cyberculture Religions','205');
352 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','disciples_of_christ','1067','Disciples of Christ','215');
353 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','divination','1016','Divination','225');
354 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','eastern_orthodox','1068','Eastern Orthodox','235');
355 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','episcopalian','1069','Episcopalian','245');
356 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','evangelical_covenant','1070','Evangelical Covenant','255');
357 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','fourth_way','1017','Fourth Way','265');
358 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','free_daism','1018','Free Daism','275');
359 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','friends','1071','Friends','285');
360 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','full_gospel','1072','Full Gospel','295');
361 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','gnosis','1019','Gnosis','305');
362 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','hinduism','1020','Hinduism','315');
363 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','humanism','1021','Humanism','325');
364 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','independent','1022','Independent','335');
365 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','islam','1023','Islam','345');
366 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jainism','1024','Jainism','355');
367 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jehovahs_witnesses','1025','Jehovah\'s Witnesses','365');
368 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','judaism','1026','Judaism','375');
369 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','latter_day_saints','1027','Latter Day Saints','385');
370 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','lutheran','1028','Lutheran','395');
371 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mahayana','1029','Mahayana','405');
372 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','meditation','1030','Meditation','415');
373 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','messianic_judaism','1031','Messianic Judaism','425');
374 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','methodist','1073','Methodist','435');
375 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mitraism','1032','Mitraism','445');
376 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','native_american','1074','Native American','455');
377 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','nazarene','1075','Nazarene','465');
378 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','new_age','1033','New Age','475');
379 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','non-roman_catholic','1034','non-Roman Catholic','485');
380 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','occult','1035','Occult','495');
381 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','orthodox','1036','Orthodox','505');
382 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','paganism','1037','Paganism','515');
383 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','pentecostal','1038','Pentecostal','525');
384 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','presbyterian','1076','Presbyterian','535');
385 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','process_the','1039','Process, The','545');
386 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant','1077','Protestant','555');
387 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant_no_denomination','1078','Protestant, No Denomination','565');
388 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed','1079','Reformed','575');
389 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed_presbyterian','1040','Reformed/Presbyterian','585');
390 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','roman_catholic_church','1041','Roman Catholic Church','595');
391 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','salvation_army','1080','Salvation Army','605');
392 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','satanism','1042','Satanism','615');
393 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','scientology','1043','Scientology','625');
394 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shamanism','1044','Shamanism','635');
395 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shiite_islam','1045','Shiite (Islam)','645');
396 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shinto','1046','Shinto','655');
397 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sikism','1047','Sikism','665');
398 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','spiritualism','1048','Spiritualism','675');
399 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sunni_islam','1049','Sunni (Islam)','685');
400 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','taoism','1050','Taoism','695');
401 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','theravada','1051','Theravada','705');
402 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian_universalist','1081','Unitarian Universalist','715');
403 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian-universalism','1052','Unitarian-Universalism','725');
404 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','united_church_of_christ','1082','United Church of Christ','735');
405 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','universal_life_church','1053','Universal Life Church','745');
406 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','vajrayana_tibetan','1054','Vajrayana (Tibetan)','755');
407 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','veda','1055','Veda','765');
408 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','voodoo','1056','Voodoo','775');
409 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','wicca','1057','Wicca','785');
410 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','yaohushua','1058','Yaohushua','795');
411 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zen_buddhism','1059','Zen Buddhism','805');
412 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zoroastrianism','1060','Zoroastrianism','815');
416 #IfNotRow2D list_options list_id lists option_id personal_relationship
417 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','personal_relationship','Relationship');
418 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ADOPT','Adopted Child','ADOPT','10');
419 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','AUNT','Aunt','AUNT','20');
420 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHILD','Child','CHILD','30');
421 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDINLAW','Child in-law','CHLDINLAW','40');
422 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','COUSN','Cousin','COUSN','50');
423 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','DOMPART','Domestic Partner','DOMPART','60');
424 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FAMMEMB','Family Member','FAMMEMB','70');
425 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDFOST','Foster Child','CHLDFOST','80');
426 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRNDCHILD','Grandchild','GRNDCHILD','90');
427 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GPARNT','Grandparent','GPARNT','100');
428 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRPRN','Grandparent','GRPRN','110');
429 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GGRPRN','Great Grandparent','GGRPRN','120');
430 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','HSIB','Half-Sibling','HSIB','130');
431 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MAUNT','MaternalAunt','MAUNT','140');
432 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MCOUSN','MaternalCousin','MCOUSN','150');
433 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGRPRN','MaternalGrandparent','MGRPRN','160');
434 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGGRPRN','MaternalGreatgrandparent','MGGRPRN','170');
435 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MUNCLE','MaternalUncle','MUNCLE','180');
436 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NCHILD','Natural Child','NCHILD','190');
437 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NPRN','Natural Parent','NPRN','200');
438 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NSIB','Natural Sibling','NSIB','210');
439 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NBOR','Neighbor','NBOR','220');
440 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NIENEPH','Niece/Nephew','NIENEPH','230');
441 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRN','Parent','PRN','240');
442 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRNINLAW','parent in-law','PRNINLAW','250');
443 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PAUNT','PaternalAunt','PAUNT','260');
444 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PCOUSN','PaternalCousin','PCOUSN','270');
445 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGRPRN','PaternalGrandparent','PGRPRN','280');
446 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGGRPRN','PaternalGreatgrandparent','PGGRPRN','290');
447 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PUNCLE','PaternalUncle','PUNCLE','300');
448 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ROOM','Roommate','ROOM','310');
449 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIB','Sibling','SIB','320');
450 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIBINLAW','Sibling in-law','SIBINLAW','330');
451 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIGOTHR','Significant Other','SIGOTHR','340');
452 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SPS','Spouse','SPS','350');
453 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STEP','Step Child','STEP','360');
454 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPPRN','Step Parent','STPPRN','370');
455 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPSIB','Step Sibling','STPSIB','380');
456 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','UNCLE','Uncle','UNCLE','390');
457 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FRND','Unrelated Friend','FRND','400');
460 #IfNotRow3D list_options list_id ethnicity option_id hisp_or_latin notes 2135-2
461 UPDATE `list_options` SET `notes` = '2135-2' WHERE `option_id` = 'hisp_or_latin' AND `list_id` = 'ethnicity';
465 #IfNotRow3D list_options list_id ethnicity option_id not_hisp_or_latin notes 2186-5
466 UPDATE `list_options` SET `notes` = '2186-5' WHERE `option_id` = 'not_hisp_or_latin' AND `list_id` = 'ethnicity';
469 #IfNotRow3D list_options list_id race option_id amer_ind_or_alaska_native notes 1002-5
470 UPDATE `list_options` SET `notes` = '1002-5' WHERE `option_id` = 'amer_ind_or_alaska_native' AND `list_id` = 'race';
473 #IfNotRow3D list_options list_id race option_id Asian notes 2028-9
474 UPDATE `list_options` SET `notes` = '2028-9' WHERE `option_id` = 'Asian' AND `list_id` = 'race';
477 #IfNotRow3D list_options list_id race option_id black_or_afri_amer notes 2054-5
478 UPDATE `list_options` SET `notes` = '2054-5' WHERE `option_id` = 'black_or_afri_amer' AND `list_id` = 'race';
481 #IfNotRow3D list_options list_id race option_id native_hawai_or_pac_island notes 2076-8
482 UPDATE `list_options` SET `notes` = '2076-8' WHERE `option_id` = 'native_hawai_or_pac_island' AND `list_id` = 'race';
485 #IfNotRow3D list_options list_id race option_id white notes 2106-3
486 UPDATE `list_options` SET `notes` = '2106-3' WHERE `option_id` = 'white' AND `list_id` = 'race';
489 #IfNotRow2Dx2 list_options list_id race option_id abenaki title Abenaki
490 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','abenaki','Abenaki','60', '0',' 1006-6', 0);
493 #IfRow2D list_options list_id race option_id abenaki
494 UPDATE `list_options` SET `notes` = '1006-6' WHERE `option_id` = 'abenaki' AND `list_id` = 'race';
497 #IfRow2D list_options list_id race title Abenaki
498 UPDATE `list_options` SET `notes` = '1006-6' WHERE `title` = 'Abenaki' AND `list_id` = 'race';
501 #IfNotRow2Dx2 list_options list_id race option_id absentee_shawnee title Absentee Shawnee
502 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','absentee_shawnee','Absentee Shawnee','70', '0',' 1579-2', 0);
505 #IfRow2D list_options list_id race option_id absentee_shawnee
506 UPDATE `list_options` SET `notes` = '1579-2' WHERE `option_id` = 'absentee_shawnee' AND `list_id` = 'race';
509 #IfRow2D list_options list_id race title Absentee Shawnee
510 UPDATE `list_options` SET `notes` = '1579-2' WHERE `title` = 'Absentee Shawnee' AND `list_id` = 'race';
513 #IfNotRow2Dx2 list_options list_id race option_id acoma title Acoma
514 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','acoma','Acoma','80', '0',' 1490-2', 0);
517 #IfRow2D list_options list_id race option_id acoma
518 UPDATE `list_options` SET `notes` = '1490-2' WHERE `option_id` = 'acoma' AND `list_id` = 'race';
521 #IfRow2D list_options list_id race title Acoma
522 UPDATE `list_options` SET `notes` = '1490-2' WHERE `title` = 'Acoma' AND `list_id` = 'race';
525 #IfNotRow2Dx2 list_options list_id race option_id afghanistani title Afghanistani
526 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','afghanistani','Afghanistani','90', '0',' 2126-1', 0);
529 #IfRow2D list_options list_id race option_id afghanistani
530 UPDATE `list_options` SET `notes` = '2126-1' WHERE `option_id` = 'afghanistani' AND `list_id` = 'race';
533 #IfRow2D list_options list_id race title Afghanistani
534 UPDATE `list_options` SET `notes` = '2126-1' WHERE `title` = 'Afghanistani' AND `list_id` = 'race';
537 #IfNotRow2Dx2 list_options list_id race option_id african title African
538 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','african','African','100', '0',' 2060-2', 0);
541 #IfRow2D list_options list_id race option_id african
542 UPDATE `list_options` SET `notes` = '2060-2' WHERE `option_id` = 'african' AND `list_id` = 'race';
545 #IfRow2D list_options list_id race title African
546 UPDATE `list_options` SET `notes` = '2060-2' WHERE `title` = 'African' AND `list_id` = 'race';
549 #IfNotRow2Dx2 list_options list_id race option_id african_american title African American
550 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','african_american','African American','110', '0',' 2058-6', 0);
553 #IfRow2D list_options list_id race option_id african_american
554 UPDATE `list_options` SET `notes` = '2058-6' WHERE `option_id` = 'african_american' AND `list_id` = 'race';
557 #IfRow2D list_options list_id race title African American
558 UPDATE `list_options` SET `notes` = '2058-6' WHERE `title` = 'African American' AND `list_id` = 'race';
561 #IfNotRow2Dx2 list_options list_id race option_id agdaagux title Agdaagux
562 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','agdaagux','Agdaagux','120', '0',' 1994-3', 0);
565 #IfRow2D list_options list_id race option_id agdaagux
566 UPDATE `list_options` SET `notes` = '1994-3' WHERE `option_id` = 'agdaagux' AND `list_id` = 'race';
569 #IfRow2D list_options list_id race title Agdaagux
570 UPDATE `list_options` SET `notes` = '1994-3' WHERE `title` = 'Agdaagux' AND `list_id` = 'race';
573 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente title Agua Caliente
574 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','agua_caliente','Agua Caliente','130', '0',' 1212-0', 0);
577 #IfRow2D list_options list_id race option_id agua_caliente
578 UPDATE `list_options` SET `notes` = '1212-0' WHERE `option_id` = 'agua_caliente' AND `list_id` = 'race';
581 #IfRow2D list_options list_id race title Agua Caliente
582 UPDATE `list_options` SET `notes` = '1212-0' WHERE `title` = 'Agua Caliente' AND `list_id` = 'race';
585 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente_cahuilla title Agua Caliente Cahuilla
586 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','agua_caliente_cahuilla','Agua Caliente Cahuilla','140', '0',' 1045-4', 0);
589 #IfRow2D list_options list_id race option_id agua_caliente_cahuilla
590 UPDATE `list_options` SET `notes` = '1045-4' WHERE `option_id` = 'agua_caliente_cahuilla' AND `list_id` = 'race';
593 #IfRow2D list_options list_id race title Agua Caliente Cahuilla
594 UPDATE `list_options` SET `notes` = '1045-4' WHERE `title` = 'Agua Caliente Cahuilla' AND `list_id` = 'race';
597 #IfNotRow2Dx2 list_options list_id race option_id ahtna title Ahtna
598 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ahtna','Ahtna','150', '0',' 1740-0', 0);
601 #IfRow2D list_options list_id race option_id ahtna
602 UPDATE `list_options` SET `notes` = '1740-0' WHERE `option_id` = 'ahtna' AND `list_id` = 'race';
605 #IfRow2D list_options list_id race title Ahtna
606 UPDATE `list_options` SET `notes` = '1740-0' WHERE `title` = 'Ahtna' AND `list_id` = 'race';
609 #IfNotRow2Dx2 list_options list_id race option_id ak-chin title Ak-Chin
610 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ak-chin','Ak-Chin','160', '0',' 1654-3', 0);
613 #IfRow2D list_options list_id race option_id ak-chin
614 UPDATE `list_options` SET `notes` = '1654-3' WHERE `option_id` = 'ak-chin' AND `list_id` = 'race';
617 #IfRow2D list_options list_id race title Ak-Chin
618 UPDATE `list_options` SET `notes` = '1654-3' WHERE `title` = 'Ak-Chin' AND `list_id` = 'race';
621 #IfNotRow2Dx2 list_options list_id race option_id akhiok title Akhiok
622 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','akhiok','Akhiok','170', '0',' 1993-5', 0);
625 #IfRow2D list_options list_id race option_id akhiok
626 UPDATE `list_options` SET `notes` = '1993-5' WHERE `option_id` = 'akhiok' AND `list_id` = 'race';
629 #IfRow2D list_options list_id race title Akhiok
630 UPDATE `list_options` SET `notes` = '1993-5' WHERE `title` = 'Akhiok' AND `list_id` = 'race';
633 #IfNotRow2Dx2 list_options list_id race option_id akiachak title Akiachak
634 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','akiachak','Akiachak','180', '0',' 1897-8', 0);
637 #IfRow2D list_options list_id race option_id akiachak
638 UPDATE `list_options` SET `notes` = '1897-8' WHERE `option_id` = 'akiachak' AND `list_id` = 'race';
641 #IfRow2D list_options list_id race title Akiachak
642 UPDATE `list_options` SET `notes` = '1897-8' WHERE `title` = 'Akiachak' AND `list_id` = 'race';
645 #IfNotRow2Dx2 list_options list_id race option_id akiak title Akiak
646 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','akiak','Akiak','190', '0',' 1898-6', 0);
649 #IfRow2D list_options list_id race option_id akiak
650 UPDATE `list_options` SET `notes` = '1898-6' WHERE `option_id` = 'akiak' AND `list_id` = 'race';
653 #IfRow2D list_options list_id race title Akiak
654 UPDATE `list_options` SET `notes` = '1898-6' WHERE `title` = 'Akiak' AND `list_id` = 'race';
657 #IfNotRow2Dx2 list_options list_id race option_id akutan title Akutan
658 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','akutan','Akutan','200', '0',' 2007-3', 0);
661 #IfRow2D list_options list_id race option_id akutan
662 UPDATE `list_options` SET `notes` = '2007-3' WHERE `option_id` = 'akutan' AND `list_id` = 'race';
665 #IfRow2D list_options list_id race title Akutan
666 UPDATE `list_options` SET `notes` = '2007-3' WHERE `title` = 'Akutan' AND `list_id` = 'race';
669 #IfNotRow2Dx2 list_options list_id race option_id alabama_coushatta title Alabama Coushatta
670 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alabama_coushatta','Alabama Coushatta','210', '0',' 1187-4', 0);
673 #IfRow2D list_options list_id race option_id alabama_coushatta
674 UPDATE `list_options` SET `notes` = '1187-4' WHERE `option_id` = 'alabama_coushatta' AND `list_id` = 'race';
677 #IfRow2D list_options list_id race title Alabama Coushatta
678 UPDATE `list_options` SET `notes` = '1187-4' WHERE `title` = 'Alabama Coushatta' AND `list_id` = 'race';
681 #IfNotRow2Dx2 list_options list_id race option_id alabama_creek title Alabama Creek
682 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alabama_creek','Alabama Creek','220', '0',' 1194-0', 0);
685 #IfRow2D list_options list_id race option_id alabama_creek
686 UPDATE `list_options` SET `notes` = '1194-0' WHERE `option_id` = 'alabama_creek' AND `list_id` = 'race';
689 #IfRow2D list_options list_id race title Alabama Creek
690 UPDATE `list_options` SET `notes` = '1194-0' WHERE `title` = 'Alabama Creek' AND `list_id` = 'race';
693 #IfNotRow2Dx2 list_options list_id race option_id alabama_quassarte title Alabama Quassarte
694 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alabama_quassarte','Alabama Quassarte','230', '0',' 1195-7', 0);
697 #IfRow2D list_options list_id race option_id alabama_quassarte
698 UPDATE `list_options` SET `notes` = '1195-7' WHERE `option_id` = 'alabama_quassarte' AND `list_id` = 'race';
701 #IfRow2D list_options list_id race title Alabama Quassarte
702 UPDATE `list_options` SET `notes` = '1195-7' WHERE `title` = 'Alabama Quassarte' AND `list_id` = 'race';
705 #IfNotRow2Dx2 list_options list_id race option_id alakanuk title Alakanuk
706 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alakanuk','Alakanuk','240', '0',' 1899-4', 0);
709 #IfRow2D list_options list_id race option_id alakanuk
710 UPDATE `list_options` SET `notes` = '1899-4' WHERE `option_id` = 'alakanuk' AND `list_id` = 'race';
713 #IfRow2D list_options list_id race title Alakanuk
714 UPDATE `list_options` SET `notes` = '1899-4' WHERE `title` = 'Alakanuk' AND `list_id` = 'race';
717 #IfNotRow2Dx2 list_options list_id race option_id alamo_navajo title Alamo Navajo
718 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alamo_navajo','Alamo Navajo','250', '0',' 1383-9', 0);
721 #IfRow2D list_options list_id race option_id alamo_navajo
722 UPDATE `list_options` SET `notes` = '1383-9' WHERE `option_id` = 'alamo_navajo' AND `list_id` = 'race';
725 #IfRow2D list_options list_id race title Alamo Navajo
726 UPDATE `list_options` SET `notes` = '1383-9' WHERE `title` = 'Alamo Navajo' AND `list_id` = 'race';
729 #IfNotRow2Dx2 list_options list_id race option_id alanvik title Alanvik
730 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alanvik','Alanvik','260', '0',' 1744-2', 0);
733 #IfRow2D list_options list_id race option_id alanvik
734 UPDATE `list_options` SET `notes` = '1744-2' WHERE `option_id` = 'alanvik' AND `list_id` = 'race';
737 #IfRow2D list_options list_id race title Alanvik
738 UPDATE `list_options` SET `notes` = '1744-2' WHERE `title` = 'Alanvik' AND `list_id` = 'race';
741 #IfNotRow2Dx2 list_options list_id race option_id alaska_indian title Alaska Indian
742 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alaska_indian','Alaska Indian','270', '0',' 1737-6', 0);
745 #IfRow2D list_options list_id race option_id alaska_indian
746 UPDATE `list_options` SET `notes` = '1737-6' WHERE `option_id` = 'alaska_indian' AND `list_id` = 'race';
749 #IfRow2D list_options list_id race title Alaska Indian
750 UPDATE `list_options` SET `notes` = '1737-6' WHERE `title` = 'Alaska Indian' AND `list_id` = 'race';
753 #IfNotRow2Dx2 list_options list_id race option_id alaska_native title Alaska Native
754 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alaska_native','Alaska Native','280', '0',' 1735-0', 0);
757 #IfRow2D list_options list_id race option_id alaska_native
758 UPDATE `list_options` SET `notes` = '1735-0' WHERE `option_id` = 'alaska_native' AND `list_id` = 'race';
761 #IfRow2D list_options list_id race title Alaska Native
762 UPDATE `list_options` SET `notes` = '1735-0' WHERE `title` = 'Alaska Native' AND `list_id` = 'race';
765 #IfNotRow2Dx2 list_options list_id race option_id alaskan_athabascan title Alaskan Athabascan
766 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alaskan_athabascan','Alaskan Athabascan','290', '0',' 1739-2', 0);
769 #IfRow2D list_options list_id race option_id alaskan_athabascan
770 UPDATE `list_options` SET `notes` = '1739-2' WHERE `option_id` = 'alaskan_athabascan' AND `list_id` = 'race';
773 #IfRow2D list_options list_id race title Alaskan Athabascan
774 UPDATE `list_options` SET `notes` = '1739-2' WHERE `title` = 'Alaskan Athabascan' AND `list_id` = 'race';
777 #IfNotRow2Dx2 list_options list_id race option_id alatna title Alatna
778 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alatna','Alatna','300', '0',' 1741-8', 0);
781 #IfRow2D list_options list_id race option_id alatna
782 UPDATE `list_options` SET `notes` = '1741-8' WHERE `option_id` = 'alatna' AND `list_id` = 'race';
785 #IfRow2D list_options list_id race title Alatna
786 UPDATE `list_options` SET `notes` = '1741-8' WHERE `title` = 'Alatna' AND `list_id` = 'race';
789 #IfNotRow2Dx2 list_options list_id race option_id aleknagik title Aleknagik
790 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aleknagik','Aleknagik','310', '0',' 1900-0', 0);
793 #IfRow2D list_options list_id race option_id aleknagik
794 UPDATE `list_options` SET `notes` = '1900-0' WHERE `option_id` = 'aleknagik' AND `list_id` = 'race';
797 #IfRow2D list_options list_id race title Aleknagik
798 UPDATE `list_options` SET `notes` = '1900-0' WHERE `title` = 'Aleknagik' AND `list_id` = 'race';
801 #IfNotRow2Dx2 list_options list_id race option_id aleut title Aleut
802 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aleut','Aleut','320', '0',' 1966-1', 0);
805 #IfRow2D list_options list_id race option_id aleut
806 UPDATE `list_options` SET `notes` = '1966-1' WHERE `option_id` = 'aleut' AND `list_id` = 'race';
809 #IfRow2D list_options list_id race title Aleut
810 UPDATE `list_options` SET `notes` = '1966-1' WHERE `title` = 'Aleut' AND `list_id` = 'race';
813 #IfNotRow2Dx2 list_options list_id race option_id aleut_corporation title Aleut Corporation
814 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aleut_corporation','Aleut Corporation','330', '0',' 2008-1', 0);
817 #IfRow2D list_options list_id race option_id aleut_corporation
818 UPDATE `list_options` SET `notes` = '2008-1' WHERE `option_id` = 'aleut_corporation' AND `list_id` = 'race';
821 #IfRow2D list_options list_id race title Aleut Corporation
822 UPDATE `list_options` SET `notes` = '2008-1' WHERE `title` = 'Aleut Corporation' AND `list_id` = 'race';
825 #IfNotRow2Dx2 list_options list_id race option_id aleutian title Aleutian
826 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aleutian','Aleutian','340', '0',' 2009-9', 0);
829 #IfRow2D list_options list_id race option_id aleutian
830 UPDATE `list_options` SET `notes` = '2009-9' WHERE `option_id` = 'aleutian' AND `list_id` = 'race';
833 #IfRow2D list_options list_id race title Aleutian
834 UPDATE `list_options` SET `notes` = '2009-9' WHERE `title` = 'Aleutian' AND `list_id` = 'race';
837 #IfNotRow2Dx2 list_options list_id race option_id aleutian_islander title Aleutian Islander
838 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aleutian_islander','Aleutian Islander','350', '0',' 2010-7', 0);
841 #IfRow2D list_options list_id race option_id aleutian_islander
842 UPDATE `list_options` SET `notes` = '2010-7' WHERE `option_id` = 'aleutian_islander' AND `list_id` = 'race';
845 #IfRow2D list_options list_id race title Aleutian Islander
846 UPDATE `list_options` SET `notes` = '2010-7' WHERE `title` = 'Aleutian Islander' AND `list_id` = 'race';
849 #IfNotRow2Dx2 list_options list_id race option_id alexander title Alexander
850 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alexander','Alexander','360', '0',' 1742-6', 0);
853 #IfRow2D list_options list_id race option_id alexander
854 UPDATE `list_options` SET `notes` = '1742-6' WHERE `option_id` = 'alexander' AND `list_id` = 'race';
857 #IfRow2D list_options list_id race title Alexander
858 UPDATE `list_options` SET `notes` = '1742-6' WHERE `title` = 'Alexander' AND `list_id` = 'race';
861 #IfNotRow2Dx2 list_options list_id race option_id algonquian title Algonquian
862 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','algonquian','Algonquian','370', '0',' 1008-2', 0);
865 #IfRow2D list_options list_id race option_id algonquian
866 UPDATE `list_options` SET `notes` = '1008-2' WHERE `option_id` = 'algonquian' AND `list_id` = 'race';
869 #IfRow2D list_options list_id race title Algonquian
870 UPDATE `list_options` SET `notes` = '1008-2' WHERE `title` = 'Algonquian' AND `list_id` = 'race';
873 #IfNotRow2Dx2 list_options list_id race option_id allakaket title Allakaket
874 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','allakaket','Allakaket','380', '0',' 1743-4', 0);
877 #IfRow2D list_options list_id race option_id allakaket
878 UPDATE `list_options` SET `notes` = '1743-4' WHERE `option_id` = 'allakaket' AND `list_id` = 'race';
881 #IfRow2D list_options list_id race title Allakaket
882 UPDATE `list_options` SET `notes` = '1743-4' WHERE `title` = 'Allakaket' AND `list_id` = 'race';
885 #IfNotRow2Dx2 list_options list_id race option_id allen_canyon title Allen Canyon
886 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','allen_canyon','Allen Canyon','390', '0',' 1671-7', 0);
889 #IfRow2D list_options list_id race option_id allen_canyon
890 UPDATE `list_options` SET `notes` = '1671-7' WHERE `option_id` = 'allen_canyon' AND `list_id` = 'race';
893 #IfRow2D list_options list_id race title Allen Canyon
894 UPDATE `list_options` SET `notes` = '1671-7' WHERE `title` = 'Allen Canyon' AND `list_id` = 'race';
897 #IfNotRow2Dx2 list_options list_id race option_id alpine title Alpine
898 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alpine','Alpine','400', '0',' 1688-1', 0);
901 #IfRow2D list_options list_id race option_id alpine
902 UPDATE `list_options` SET `notes` = '1688-1' WHERE `option_id` = 'alpine' AND `list_id` = 'race';
905 #IfRow2D list_options list_id race title Alpine
906 UPDATE `list_options` SET `notes` = '1688-1' WHERE `title` = 'Alpine' AND `list_id` = 'race';
909 #IfNotRow2Dx2 list_options list_id race option_id alsea title Alsea
910 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alsea','Alsea','410', '0',' 1392-0', 0);
913 #IfRow2D list_options list_id race option_id alsea
914 UPDATE `list_options` SET `notes` = '1392-0' WHERE `option_id` = 'alsea' AND `list_id` = 'race';
917 #IfRow2D list_options list_id race title Alsea
918 UPDATE `list_options` SET `notes` = '1392-0' WHERE `title` = 'Alsea' AND `list_id` = 'race';
921 #IfNotRow2Dx2 list_options list_id race option_id alutiiq_aleut title Alutiiq Aleut
922 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','alutiiq_aleut','Alutiiq Aleut','420', '0',' 1968-7', 0);
925 #IfRow2D list_options list_id race option_id alutiiq_aleut
926 UPDATE `list_options` SET `notes` = '1968-7' WHERE `option_id` = 'alutiiq_aleut' AND `list_id` = 'race';
929 #IfRow2D list_options list_id race title Alutiiq Aleut
930 UPDATE `list_options` SET `notes` = '1968-7' WHERE `title` = 'Alutiiq Aleut' AND `list_id` = 'race';
933 #IfNotRow2Dx2 list_options list_id race option_id ambler title Ambler
934 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ambler','Ambler','430', '0',' 1845-7', 0);
937 #IfRow2D list_options list_id race option_id ambler
938 UPDATE `list_options` SET `notes` = '1845-7' WHERE `option_id` = 'ambler' AND `list_id` = 'race';
941 #IfRow2D list_options list_id race title Ambler
942 UPDATE `list_options` SET `notes` = '1845-7' WHERE `title` = 'Ambler' AND `list_id` = 'race';
945 #IfNotRow2Dx2 list_options list_id race option_id american_indian title American Indian
946 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','american_indian','American Indian','440', '0',' 1004-1', 0);
949 #IfRow2D list_options list_id race option_id american_indian
950 UPDATE `list_options` SET `notes` = '1004-1' WHERE `option_id` = 'american_indian' AND `list_id` = 'race';
953 #IfRow2D list_options list_id race title American Indian
954 UPDATE `list_options` SET `notes` = '1004-1' WHERE `title` = 'American Indian' AND `list_id` = 'race';
957 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk title Anaktuvuk
958 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk','Anaktuvuk','460', '0',' 1846-5', 0);
961 #IfRow2D list_options list_id race option_id anaktuvuk
962 UPDATE `list_options` SET `notes` = '1846-5' WHERE `option_id` = 'anaktuvuk' AND `list_id` = 'race';
965 #IfRow2D list_options list_id race title Anaktuvuk
966 UPDATE `list_options` SET `notes` = '1846-5' WHERE `title` = 'Anaktuvuk' AND `list_id` = 'race';
969 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk_pass title Anaktuvuk Pass
970 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk_pass','Anaktuvuk Pass','470', '0',' 1847-3', 0);
973 #IfRow2D list_options list_id race option_id anaktuvuk_pass
974 UPDATE `list_options` SET `notes` = '1847-3' WHERE `option_id` = 'anaktuvuk_pass' AND `list_id` = 'race';
977 #IfRow2D list_options list_id race title Anaktuvuk Pass
978 UPDATE `list_options` SET `notes` = '1847-3' WHERE `title` = 'Anaktuvuk Pass' AND `list_id` = 'race';
981 #IfNotRow2Dx2 list_options list_id race option_id andreafsky title Andreafsky
982 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','andreafsky','Andreafsky','480', '0',' 1901-8', 0);
985 #IfRow2D list_options list_id race option_id andreafsky
986 UPDATE `list_options` SET `notes` = '1901-8' WHERE `option_id` = 'andreafsky' AND `list_id` = 'race';
989 #IfRow2D list_options list_id race title Andreafsky
990 UPDATE `list_options` SET `notes` = '1901-8' WHERE `title` = 'Andreafsky' AND `list_id` = 'race';
993 #IfNotRow2Dx2 list_options list_id race option_id angoon title Angoon
994 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','angoon','Angoon','490', '0',' 1814-3', 0);
997 #IfRow2D list_options list_id race option_id angoon
998 UPDATE `list_options` SET `notes` = '1814-3' WHERE `option_id` = 'angoon' AND `list_id` = 'race';
1001 #IfRow2D list_options list_id race title Angoon
1002 UPDATE `list_options` SET `notes` = '1814-3' WHERE `title` = 'Angoon' AND `list_id` = 'race';
1005 #IfNotRow2Dx2 list_options list_id race option_id aniak title Aniak
1006 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aniak','Aniak','500', '0',' 1902-6', 0);
1009 #IfRow2D list_options list_id race option_id aniak
1010 UPDATE `list_options` SET `notes` = '1902-6' WHERE `option_id` = 'aniak' AND `list_id` = 'race';
1013 #IfRow2D list_options list_id race title Aniak
1014 UPDATE `list_options` SET `notes` = '1902-6' WHERE `title` = 'Aniak' AND `list_id` = 'race';
1017 #IfNotRow2Dx2 list_options list_id race option_id anvik title Anvik
1018 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','anvik','Anvik','510', '0',' 1745-9', 0);
1021 #IfRow2D list_options list_id race option_id anvik
1022 UPDATE `list_options` SET `notes` = '1745-9' WHERE `option_id` = 'anvik' AND `list_id` = 'race';
1025 #IfRow2D list_options list_id race title Anvik
1026 UPDATE `list_options` SET `notes` = '1745-9' WHERE `title` = 'Anvik' AND `list_id` = 'race';
1029 #IfNotRow2Dx2 list_options list_id race option_id apache title Apache
1030 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','apache','Apache','520', '0',' 1010-8', 0);
1033 #IfRow2D list_options list_id race option_id apache
1034 UPDATE `list_options` SET `notes` = '1010-8' WHERE `option_id` = 'apache' AND `list_id` = 'race';
1037 #IfRow2D list_options list_id race title Apache
1038 UPDATE `list_options` SET `notes` = '1010-8' WHERE `title` = 'Apache' AND `list_id` = 'race';
1041 #IfNotRow2Dx2 list_options list_id race option_id arab title Arab
1042 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arab','Arab','530', '0',' 2129-5', 0);
1045 #IfRow2D list_options list_id race option_id arab
1046 UPDATE `list_options` SET `notes` = '2129-5' WHERE `option_id` = 'arab' AND `list_id` = 'race';
1049 #IfRow2D list_options list_id race title Arab
1050 UPDATE `list_options` SET `notes` = '2129-5' WHERE `title` = 'Arab' AND `list_id` = 'race';
1053 #IfNotRow2Dx2 list_options list_id race option_id arapaho title Arapaho
1054 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arapaho','Arapaho','540', '0',' 1021-5', 0);
1057 #IfRow2D list_options list_id race option_id arapaho
1058 UPDATE `list_options` SET `notes` = '1021-5' WHERE `option_id` = 'arapaho' AND `list_id` = 'race';
1061 #IfRow2D list_options list_id race title Arapaho
1062 UPDATE `list_options` SET `notes` = '1021-5' WHERE `title` = 'Arapaho' AND `list_id` = 'race';
1065 #IfNotRow2Dx2 list_options list_id race option_id arctic title Arctic
1066 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arctic','Arctic','550', '0',' 1746-7', 0);
1069 #IfRow2D list_options list_id race option_id arctic
1070 UPDATE `list_options` SET `notes` = '1746-7' WHERE `option_id` = 'arctic' AND `list_id` = 'race';
1073 #IfRow2D list_options list_id race title Arctic
1074 UPDATE `list_options` SET `notes` = '1746-7' WHERE `title` = 'Arctic' AND `list_id` = 'race';
1077 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_corporation title Arctic Slope Corporation
1078 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_corporation','Arctic Slope Corporation','560', '0',' 1849-9', 0);
1081 #IfRow2D list_options list_id race option_id arctic_slope_corporation
1082 UPDATE `list_options` SET `notes` = '1849-9' WHERE `option_id` = 'arctic_slope_corporation' AND `list_id` = 'race';
1085 #IfRow2D list_options list_id race title Arctic Slope Corporation
1086 UPDATE `list_options` SET `notes` = '1849-9' WHERE `title` = 'Arctic Slope Corporation' AND `list_id` = 'race';
1089 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_inupiat title Arctic Slope Inupiat
1090 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_inupiat','Arctic Slope Inupiat','570', '0',' 1848-1', 0);
1093 #IfRow2D list_options list_id race option_id arctic_slope_inupiat
1094 UPDATE `list_options` SET `notes` = '1848-1' WHERE `option_id` = 'arctic_slope_inupiat' AND `list_id` = 'race';
1097 #IfRow2D list_options list_id race title Arctic Slope Inupiat
1098 UPDATE `list_options` SET `notes` = '1848-1' WHERE `title` = 'Arctic Slope Inupiat' AND `list_id` = 'race';
1101 #IfNotRow2Dx2 list_options list_id race option_id arikara title Arikara
1102 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arikara','Arikara','580', '0',' 1026-4', 0);
1105 #IfRow2D list_options list_id race option_id arikara
1106 UPDATE `list_options` SET `notes` = '1026-4' WHERE `option_id` = 'arikara' AND `list_id` = 'race';
1109 #IfRow2D list_options list_id race title Arikara
1110 UPDATE `list_options` SET `notes` = '1026-4' WHERE `title` = 'Arikara' AND `list_id` = 'race';
1113 #IfNotRow2Dx2 list_options list_id race option_id arizona_tewa title Arizona Tewa
1114 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','arizona_tewa','Arizona Tewa','590', '0',' 1491-0', 0);
1117 #IfRow2D list_options list_id race option_id arizona_tewa
1118 UPDATE `list_options` SET `notes` = '1491-0' WHERE `option_id` = 'arizona_tewa' AND `list_id` = 'race';
1121 #IfRow2D list_options list_id race title Arizona Tewa
1122 UPDATE `list_options` SET `notes` = '1491-0' WHERE `title` = 'Arizona Tewa' AND `list_id` = 'race';
1125 #IfNotRow2Dx2 list_options list_id race option_id armenian title Armenian
1126 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','armenian','Armenian','600', '0',' 2109-7', 0);
1129 #IfRow2D list_options list_id race option_id armenian
1130 UPDATE `list_options` SET `notes` = '2109-7' WHERE `option_id` = 'armenian' AND `list_id` = 'race';
1133 #IfRow2D list_options list_id race title Armenian
1134 UPDATE `list_options` SET `notes` = '2109-7' WHERE `title` = 'Armenian' AND `list_id` = 'race';
1137 #IfNotRow2Dx2 list_options list_id race option_id aroostook title Aroostook
1138 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','aroostook','Aroostook','610', '0',' 1366-4', 0);
1141 #IfRow2D list_options list_id race option_id aroostook
1142 UPDATE `list_options` SET `notes` = '1366-4' WHERE `option_id` = 'aroostook' AND `list_id` = 'race';
1145 #IfRow2D list_options list_id race title Aroostook
1146 UPDATE `list_options` SET `notes` = '1366-4' WHERE `title` = 'Aroostook' AND `list_id` = 'race';
1149 #IfNotRow2Dx2 list_options list_id race option_id asian_indian title Asian Indian
1150 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','asian_indian','Asian Indian','630', '0',' 2029-7', 0);
1153 #IfRow2D list_options list_id race option_id asian_indian
1154 UPDATE `list_options` SET `notes` = '2029-7' WHERE `option_id` = 'asian_indian' AND `list_id` = 'race';
1157 #IfRow2D list_options list_id race title Asian Indian
1158 UPDATE `list_options` SET `notes` = '2029-7' WHERE `title` = 'Asian Indian' AND `list_id` = 'race';
1161 #IfNotRow2Dx2 list_options list_id race option_id assiniboine title Assiniboine
1162 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','assiniboine','Assiniboine','640', '0',' 1028-0', 0);
1165 #IfRow2D list_options list_id race option_id assiniboine
1166 UPDATE `list_options` SET `notes` = '1028-0' WHERE `option_id` = 'assiniboine' AND `list_id` = 'race';
1169 #IfRow2D list_options list_id race title Assiniboine
1170 UPDATE `list_options` SET `notes` = '1028-0' WHERE `title` = 'Assiniboine' AND `list_id` = 'race';
1173 #IfNotRow2Dx2 list_options list_id race option_id assiniboine_sioux title Assiniboine Sioux
1174 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','assiniboine_sioux','Assiniboine Sioux','650', '0',' 1030-6', 0);
1177 #IfRow2D list_options list_id race option_id assiniboine_sioux
1178 UPDATE `list_options` SET `notes` = '1030-6' WHERE `option_id` = 'assiniboine_sioux' AND `list_id` = 'race';
1181 #IfRow2D list_options list_id race title Assiniboine Sioux
1182 UPDATE `list_options` SET `notes` = '1030-6' WHERE `title` = 'Assiniboine Sioux' AND `list_id` = 'race';
1185 #IfNotRow2Dx2 list_options list_id race option_id assyrian title Assyrian
1186 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','assyrian','Assyrian','660', '0',' 2119-6', 0);
1189 #IfRow2D list_options list_id race option_id assyrian
1190 UPDATE `list_options` SET `notes` = '2119-6' WHERE `option_id` = 'assyrian' AND `list_id` = 'race';
1193 #IfRow2D list_options list_id race title Assyrian
1194 UPDATE `list_options` SET `notes` = '2119-6' WHERE `title` = 'Assyrian' AND `list_id` = 'race';
1197 #IfNotRow2Dx2 list_options list_id race option_id atka title Atka
1198 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','atka','Atka','670', '0',' 2011-5', 0);
1201 #IfRow2D list_options list_id race option_id atka
1202 UPDATE `list_options` SET `notes` = '2011-5' WHERE `option_id` = 'atka' AND `list_id` = 'race';
1205 #IfRow2D list_options list_id race title Atka
1206 UPDATE `list_options` SET `notes` = '2011-5' WHERE `title` = 'Atka' AND `list_id` = 'race';
1209 #IfNotRow2Dx2 list_options list_id race option_id atmautluak title Atmautluak
1210 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','atmautluak','Atmautluak','680', '0',' 1903-4', 0);
1213 #IfRow2D list_options list_id race option_id atmautluak
1214 UPDATE `list_options` SET `notes` = '1903-4' WHERE `option_id` = 'atmautluak' AND `list_id` = 'race';
1217 #IfRow2D list_options list_id race title Atmautluak
1218 UPDATE `list_options` SET `notes` = '1903-4' WHERE `title` = 'Atmautluak' AND `list_id` = 'race';
1221 #IfNotRow2Dx2 list_options list_id race option_id atqasuk title Atqasuk
1222 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','atqasuk','Atqasuk','690', '0',' 1850-7', 0);
1225 #IfRow2D list_options list_id race option_id atqasuk
1226 UPDATE `list_options` SET `notes` = '1850-7' WHERE `option_id` = 'atqasuk' AND `list_id` = 'race';
1229 #IfRow2D list_options list_id race title Atqasuk
1230 UPDATE `list_options` SET `notes` = '1850-7' WHERE `title` = 'Atqasuk' AND `list_id` = 'race';
1233 #IfNotRow2Dx2 list_options list_id race option_id atsina title Atsina
1234 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','atsina','Atsina','700', '0',' 1265-8', 0);
1237 #IfRow2D list_options list_id race option_id atsina
1238 UPDATE `list_options` SET `notes` = '1265-8' WHERE `option_id` = 'atsina' AND `list_id` = 'race';
1241 #IfRow2D list_options list_id race title Atsina
1242 UPDATE `list_options` SET `notes` = '1265-8' WHERE `title` = 'Atsina' AND `list_id` = 'race';
1245 #IfNotRow2Dx2 list_options list_id race option_id attacapa title Attacapa
1246 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','attacapa','Attacapa','710', '0',' 1234-4', 0);
1249 #IfRow2D list_options list_id race option_id attacapa
1250 UPDATE `list_options` SET `notes` = '1234-4' WHERE `option_id` = 'attacapa' AND `list_id` = 'race';
1253 #IfRow2D list_options list_id race title Attacapa
1254 UPDATE `list_options` SET `notes` = '1234-4' WHERE `title` = 'Attacapa' AND `list_id` = 'race';
1257 #IfNotRow2Dx2 list_options list_id race option_id augustine title Augustine
1258 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','augustine','Augustine','720', '0',' 1046-2', 0);
1261 #IfRow2D list_options list_id race option_id augustine
1262 UPDATE `list_options` SET `notes` = '1046-2' WHERE `option_id` = 'augustine' AND `list_id` = 'race';
1265 #IfRow2D list_options list_id race title Augustine
1266 UPDATE `list_options` SET `notes` = '1046-2' WHERE `title` = 'Augustine' AND `list_id` = 'race';
1269 #IfNotRow2Dx2 list_options list_id race option_id bad_river title Bad River
1270 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bad_river','Bad River','730', '0',' 1124-7', 0);
1273 #IfRow2D list_options list_id race option_id bad_river
1274 UPDATE `list_options` SET `notes` = '1124-7' WHERE `option_id` = 'bad_river' AND `list_id` = 'race';
1277 #IfRow2D list_options list_id race title Bad River
1278 UPDATE `list_options` SET `notes` = '1124-7' WHERE `title` = 'Bad River' AND `list_id` = 'race';
1281 #IfNotRow2Dx2 list_options list_id race option_id bahamian title Bahamian
1282 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bahamian','Bahamian','740', '0',' 2067-7', 0);
1285 #IfRow2D list_options list_id race option_id bahamian
1286 UPDATE `list_options` SET `notes` = '2067-7' WHERE `option_id` = 'bahamian' AND `list_id` = 'race';
1289 #IfRow2D list_options list_id race title Bahamian
1290 UPDATE `list_options` SET `notes` = '2067-7' WHERE `title` = 'Bahamian' AND `list_id` = 'race';
1293 #IfNotRow2Dx2 list_options list_id race option_id bangladeshi title Bangladeshi
1294 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bangladeshi','Bangladeshi','750', '0',' 2030-5', 0);
1297 #IfRow2D list_options list_id race option_id bangladeshi
1298 UPDATE `list_options` SET `notes` = '2030-5' WHERE `option_id` = 'bangladeshi' AND `list_id` = 'race';
1301 #IfRow2D list_options list_id race title Bangladeshi
1302 UPDATE `list_options` SET `notes` = '2030-5' WHERE `title` = 'Bangladeshi' AND `list_id` = 'race';
1305 #IfNotRow2Dx2 list_options list_id race option_id bannock title Bannock
1306 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bannock','Bannock','760', '0',' 1033-0', 0);
1309 #IfRow2D list_options list_id race option_id bannock
1310 UPDATE `list_options` SET `notes` = '1033-0' WHERE `option_id` = 'bannock' AND `list_id` = 'race';
1313 #IfRow2D list_options list_id race title Bannock
1314 UPDATE `list_options` SET `notes` = '1033-0' WHERE `title` = 'Bannock' AND `list_id` = 'race';
1317 #IfNotRow2Dx2 list_options list_id race option_id barbadian title Barbadian
1318 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','barbadian','Barbadian','770', '0',' 2068-5', 0);
1321 #IfRow2D list_options list_id race option_id barbadian
1322 UPDATE `list_options` SET `notes` = '2068-5' WHERE `option_id` = 'barbadian' AND `list_id` = 'race';
1325 #IfRow2D list_options list_id race title Barbadian
1326 UPDATE `list_options` SET `notes` = '2068-5' WHERE `title` = 'Barbadian' AND `list_id` = 'race';
1329 #IfNotRow2Dx2 list_options list_id race option_id barrio_libre title Barrio Libre
1330 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','barrio_libre','Barrio Libre','780', '0',' 1712-9', 0);
1333 #IfRow2D list_options list_id race option_id barrio_libre
1334 UPDATE `list_options` SET `notes` = '1712-9' WHERE `option_id` = 'barrio_libre' AND `list_id` = 'race';
1337 #IfRow2D list_options list_id race title Barrio Libre
1338 UPDATE `list_options` SET `notes` = '1712-9' WHERE `title` = 'Barrio Libre' AND `list_id` = 'race';
1341 #IfNotRow2Dx2 list_options list_id race option_id barrow title Barrow
1342 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','barrow','Barrow','790', '0',' 1851-5', 0);
1345 #IfRow2D list_options list_id race option_id barrow
1346 UPDATE `list_options` SET `notes` = '1851-5' WHERE `option_id` = 'barrow' AND `list_id` = 'race';
1349 #IfRow2D list_options list_id race title Barrow
1350 UPDATE `list_options` SET `notes` = '1851-5' WHERE `title` = 'Barrow' AND `list_id` = 'race';
1353 #IfNotRow2Dx2 list_options list_id race option_id battle_mountain title Battle Mountain
1354 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','battle_mountain','Battle Mountain','800', '0',' 1587-5', 0);
1357 #IfRow2D list_options list_id race option_id battle_mountain
1358 UPDATE `list_options` SET `notes` = '1587-5' WHERE `option_id` = 'battle_mountain' AND `list_id` = 'race';
1361 #IfRow2D list_options list_id race title Battle Mountain
1362 UPDATE `list_options` SET `notes` = '1587-5' WHERE `title` = 'Battle Mountain' AND `list_id` = 'race';
1365 #IfNotRow2Dx2 list_options list_id race option_id bay_mills_chippewa title Bay Mills Chippewa
1366 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bay_mills_chippewa','Bay Mills Chippewa','810', '0',' 1125-4', 0);
1369 #IfRow2D list_options list_id race option_id bay_mills_chippewa
1370 UPDATE `list_options` SET `notes` = '1125-4' WHERE `option_id` = 'bay_mills_chippewa' AND `list_id` = 'race';
1373 #IfRow2D list_options list_id race title Bay Mills Chippewa
1374 UPDATE `list_options` SET `notes` = '1125-4' WHERE `title` = 'Bay Mills Chippewa' AND `list_id` = 'race';
1377 #IfNotRow2Dx2 list_options list_id race option_id beaver title Beaver
1378 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','beaver','Beaver','820', '0',' 1747-5', 0);
1381 #IfRow2D list_options list_id race option_id beaver
1382 UPDATE `list_options` SET `notes` = '1747-5' WHERE `option_id` = 'beaver' AND `list_id` = 'race';
1385 #IfRow2D list_options list_id race title Beaver
1386 UPDATE `list_options` SET `notes` = '1747-5' WHERE `title` = 'Beaver' AND `list_id` = 'race';
1389 #IfNotRow2Dx2 list_options list_id race option_id belkofski title Belkofski
1390 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','belkofski','Belkofski','830', '0',' 2012-3', 0);
1393 #IfRow2D list_options list_id race option_id belkofski
1394 UPDATE `list_options` SET `notes` = '2012-3' WHERE `option_id` = 'belkofski' AND `list_id` = 'race';
1397 #IfRow2D list_options list_id race title Belkofski
1398 UPDATE `list_options` SET `notes` = '2012-3' WHERE `title` = 'Belkofski' AND `list_id` = 'race';
1401 #IfNotRow2Dx2 list_options list_id race option_id bering_straits_inupiat title Bering Straits Inupiat
1402 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bering_straits_inupiat','Bering Straits Inupiat','840', '0',' 1852-3', 0);
1405 #IfRow2D list_options list_id race option_id bering_straits_inupiat
1406 UPDATE `list_options` SET `notes` = '1852-3' WHERE `option_id` = 'bering_straits_inupiat' AND `list_id` = 'race';
1409 #IfRow2D list_options list_id race title Bering Straits Inupiat
1410 UPDATE `list_options` SET `notes` = '1852-3' WHERE `title` = 'Bering Straits Inupiat' AND `list_id` = 'race';
1413 #IfNotRow2Dx2 list_options list_id race option_id bethel title Bethel
1414 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bethel','Bethel','850', '0',' 1904-2', 0);
1417 #IfRow2D list_options list_id race option_id bethel
1418 UPDATE `list_options` SET `notes` = '1904-2' WHERE `option_id` = 'bethel' AND `list_id` = 'race';
1421 #IfRow2D list_options list_id race title Bethel
1422 UPDATE `list_options` SET `notes` = '1904-2' WHERE `title` = 'Bethel' AND `list_id` = 'race';
1425 #IfNotRow2Dx2 list_options list_id race option_id bhutanese title Bhutanese
1426 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bhutanese','Bhutanese','860', '0',' 2031-3', 0);
1429 #IfRow2D list_options list_id race option_id bhutanese
1430 UPDATE `list_options` SET `notes` = '2031-3' WHERE `option_id` = 'bhutanese' AND `list_id` = 'race';
1433 #IfRow2D list_options list_id race title Bhutanese
1434 UPDATE `list_options` SET `notes` = '2031-3' WHERE `title` = 'Bhutanese' AND `list_id` = 'race';
1437 #IfNotRow2Dx2 list_options list_id race option_id big_cypress title Big Cypress
1438 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','big_cypress','Big Cypress','870', '0',' 1567-7', 0);
1441 #IfRow2D list_options list_id race option_id big_cypress
1442 UPDATE `list_options` SET `notes` = '1567-7' WHERE `option_id` = 'big_cypress' AND `list_id` = 'race';
1445 #IfRow2D list_options list_id race title Big Cypress
1446 UPDATE `list_options` SET `notes` = '1567-7' WHERE `title` = 'Big Cypress' AND `list_id` = 'race';
1449 #IfNotRow2D list_options list_id race option_id bill_moores_slough
1450 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bill_moores_slough',"Bill Moore's Slough",'880', '0',' 1905-9', 0);
1453 #IfRow2D list_options list_id race option_id bill_moores_slough
1454 UPDATE `list_options` SET `notes` = '1905-9' WHERE `option_id` = 'bill_moores_slough' AND `list_id` = 'race';
1457 #IfNotRow2Dx2 list_options list_id race option_id biloxi title Biloxi
1458 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','biloxi','Biloxi','890', '0',' 1235-1', 0);
1461 #IfRow2D list_options list_id race option_id biloxi
1462 UPDATE `list_options` SET `notes` = '1235-1' WHERE `option_id` = 'biloxi' AND `list_id` = 'race';
1465 #IfRow2D list_options list_id race title Biloxi
1466 UPDATE `list_options` SET `notes` = '1235-1' WHERE `title` = 'Biloxi' AND `list_id` = 'race';
1469 #IfNotRow2Dx2 list_options list_id race option_id birch_creek title Birch Creek
1470 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','birch_creek','Birch Creek','900', '0',' 1748-3', 0);
1473 #IfRow2D list_options list_id race option_id birch_creek
1474 UPDATE `list_options` SET `notes` = '1748-3' WHERE `option_id` = 'birch_creek' AND `list_id` = 'race';
1477 #IfRow2D list_options list_id race title Birch Creek
1478 UPDATE `list_options` SET `notes` = '1748-3' WHERE `title` = 'Birch Creek' AND `list_id` = 'race';
1481 #IfNotRow2Dx2 list_options list_id race option_id bishop title Bishop
1482 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bishop','Bishop','910', '0',' 1417-5', 0);
1485 #IfRow2D list_options list_id race option_id bishop
1486 UPDATE `list_options` SET `notes` = '1417-5' WHERE `option_id` = 'bishop' AND `list_id` = 'race';
1489 #IfRow2D list_options list_id race title Bishop
1490 UPDATE `list_options` SET `notes` = '1417-5' WHERE `title` = 'Bishop' AND `list_id` = 'race';
1493 #IfNotRow2Dx2 list_options list_id race option_id black title Black
1494 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','black','Black','920', '0',' 2056-0', 0);
1497 #IfRow2D list_options list_id race option_id black
1498 UPDATE `list_options` SET `notes` = '2056-0' WHERE `option_id` = 'black' AND `list_id` = 'race';
1501 #IfRow2D list_options list_id race title Black
1502 UPDATE `list_options` SET `notes` = '2056-0' WHERE `title` = 'Black' AND `list_id` = 'race';
1505 #IfNotRow2Dx2 list_options list_id race option_id blackfeet title Blackfeet
1506 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','blackfeet','Blackfeet','940', '0',' 1035-5', 0);
1509 #IfRow2D list_options list_id race option_id blackfeet
1510 UPDATE `list_options` SET `notes` = '1035-5' WHERE `option_id` = 'blackfeet' AND `list_id` = 'race';
1513 #IfRow2D list_options list_id race title Blackfeet
1514 UPDATE `list_options` SET `notes` = '1035-5' WHERE `title` = 'Blackfeet' AND `list_id` = 'race';
1517 #IfNotRow2Dx2 list_options list_id race option_id blackfoot_sioux title Blackfoot Sioux
1518 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','blackfoot_sioux','Blackfoot Sioux','950', '0',' 1610-5', 0);
1521 #IfRow2D list_options list_id race option_id blackfoot_sioux
1522 UPDATE `list_options` SET `notes` = '1610-5' WHERE `option_id` = 'blackfoot_sioux' AND `list_id` = 'race';
1525 #IfRow2D list_options list_id race title Blackfoot Sioux
1526 UPDATE `list_options` SET `notes` = '1610-5' WHERE `title` = 'Blackfoot Sioux' AND `list_id` = 'race';
1529 #IfNotRow2Dx2 list_options list_id race option_id bois_forte title Bois Forte
1530 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bois_forte','Bois Forte','960', '0',' 1126-2', 0);
1533 #IfRow2D list_options list_id race option_id bois_forte
1534 UPDATE `list_options` SET `notes` = '1126-2' WHERE `option_id` = 'bois_forte' AND `list_id` = 'race';
1537 #IfRow2D list_options list_id race title Bois Forte
1538 UPDATE `list_options` SET `notes` = '1126-2' WHERE `title` = 'Bois Forte' AND `list_id` = 'race';
1541 #IfNotRow2Dx2 list_options list_id race option_id botswanan title Botswanan
1542 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','botswanan','Botswanan','970', '0',' 2061-0', 0);
1545 #IfRow2D list_options list_id race option_id botswanan
1546 UPDATE `list_options` SET `notes` = '2061-0' WHERE `option_id` = 'botswanan' AND `list_id` = 'race';
1549 #IfRow2D list_options list_id race title Botswanan
1550 UPDATE `list_options` SET `notes` = '2061-0' WHERE `title` = 'Botswanan' AND `list_id` = 'race';
1553 #IfNotRow2Dx2 list_options list_id race option_id brevig_mission title Brevig Mission
1554 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','brevig_mission','Brevig Mission','980', '0',' 1853-1', 0);
1557 #IfRow2D list_options list_id race option_id brevig_mission
1558 UPDATE `list_options` SET `notes` = '1853-1' WHERE `option_id` = 'brevig_mission' AND `list_id` = 'race';
1561 #IfRow2D list_options list_id race title Brevig Mission
1562 UPDATE `list_options` SET `notes` = '1853-1' WHERE `title` = 'Brevig Mission' AND `list_id` = 'race';
1565 #IfNotRow2Dx2 list_options list_id race option_id bridgeport title Bridgeport
1566 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bridgeport','Bridgeport','990', '0',' 1418-3', 0);
1569 #IfRow2D list_options list_id race option_id bridgeport
1570 UPDATE `list_options` SET `notes` = '1418-3' WHERE `option_id` = 'bridgeport' AND `list_id` = 'race';
1573 #IfRow2D list_options list_id race title Bridgeport
1574 UPDATE `list_options` SET `notes` = '1418-3' WHERE `title` = 'Bridgeport' AND `list_id` = 'race';
1577 #IfNotRow2Dx2 list_options list_id race option_id brighton title Brighton
1578 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','brighton','Brighton','1000', '0',' 1568-5', 0);
1581 #IfRow2D list_options list_id race option_id brighton
1582 UPDATE `list_options` SET `notes` = '1568-5' WHERE `option_id` = 'brighton' AND `list_id` = 'race';
1585 #IfRow2D list_options list_id race title Brighton
1586 UPDATE `list_options` SET `notes` = '1568-5' WHERE `title` = 'Brighton' AND `list_id` = 'race';
1589 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_aleut title Bristol Bay Aleut
1590 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_aleut','Bristol Bay Aleut','1010', '0',' 1972-9', 0);
1593 #IfRow2D list_options list_id race option_id bristol_bay_aleut
1594 UPDATE `list_options` SET `notes` = '1972-9' WHERE `option_id` = 'bristol_bay_aleut' AND `list_id` = 'race';
1597 #IfRow2D list_options list_id race title Bristol Bay Aleut
1598 UPDATE `list_options` SET `notes` = '1972-9' WHERE `title` = 'Bristol Bay Aleut' AND `list_id` = 'race';
1601 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_yupik title Bristol Bay Yupik
1602 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_yupik','Bristol Bay Yupik','1020', '0',' 1906-7', 0);
1605 #IfRow2D list_options list_id race option_id bristol_bay_yupik
1606 UPDATE `list_options` SET `notes` = '1906-7' WHERE `option_id` = 'bristol_bay_yupik' AND `list_id` = 'race';
1609 #IfRow2D list_options list_id race title Bristol Bay Yupik
1610 UPDATE `list_options` SET `notes` = '1906-7' WHERE `title` = 'Bristol Bay Yupik' AND `list_id` = 'race';
1613 #IfNotRow2Dx2 list_options list_id race option_id brotherton title Brotherton
1614 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','brotherton','Brotherton','1030', '0',' 1037-1', 0);
1617 #IfRow2D list_options list_id race option_id brotherton
1618 UPDATE `list_options` SET `notes` = '1037-1' WHERE `option_id` = 'brotherton' AND `list_id` = 'race';
1621 #IfRow2D list_options list_id race title Brotherton
1622 UPDATE `list_options` SET `notes` = '1037-1' WHERE `title` = 'Brotherton' AND `list_id` = 'race';
1625 #IfNotRow2Dx2 list_options list_id race option_id brule_sioux title Brule Sioux
1626 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','brule_sioux','Brule Sioux','1040', '0',' 1611-3', 0);
1629 #IfRow2D list_options list_id race option_id brule_sioux
1630 UPDATE `list_options` SET `notes` = '1611-3' WHERE `option_id` = 'brule_sioux' AND `list_id` = 'race';
1633 #IfRow2D list_options list_id race title Brule Sioux
1634 UPDATE `list_options` SET `notes` = '1611-3' WHERE `title` = 'Brule Sioux' AND `list_id` = 'race';
1637 #IfNotRow2Dx2 list_options list_id race option_id buckland title Buckland
1638 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','buckland','Buckland','1050', '0',' 1854-9', 0);
1641 #IfRow2D list_options list_id race option_id buckland
1642 UPDATE `list_options` SET `notes` = '1854-9' WHERE `option_id` = 'buckland' AND `list_id` = 'race';
1645 #IfRow2D list_options list_id race title Buckland
1646 UPDATE `list_options` SET `notes` = '1854-9' WHERE `title` = 'Buckland' AND `list_id` = 'race';
1649 #IfNotRow2Dx2 list_options list_id race option_id burmese title Burmese
1650 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','burmese','Burmese','1060', '0',' 2032-1', 0);
1653 #IfRow2D list_options list_id race option_id burmese
1654 UPDATE `list_options` SET `notes` = '2032-1' WHERE `option_id` = 'burmese' AND `list_id` = 'race';
1657 #IfRow2D list_options list_id race title Burmese
1658 UPDATE `list_options` SET `notes` = '2032-1' WHERE `title` = 'Burmese' AND `list_id` = 'race';
1661 #IfNotRow2Dx2 list_options list_id race option_id burns_paiute title Burns Paiute
1662 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','burns_paiute','Burns Paiute','1070', '0',' 1419-1', 0);
1665 #IfRow2D list_options list_id race option_id burns_paiute
1666 UPDATE `list_options` SET `notes` = '1419-1' WHERE `option_id` = 'burns_paiute' AND `list_id` = 'race';
1669 #IfRow2D list_options list_id race title Burns Paiute
1670 UPDATE `list_options` SET `notes` = '1419-1' WHERE `title` = 'Burns Paiute' AND `list_id` = 'race';
1673 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_band title Burt Lake Band
1674 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','burt_lake_band','Burt Lake Band','1080', '0',' 1039-7', 0);
1677 #IfRow2D list_options list_id race option_id burt_lake_band
1678 UPDATE `list_options` SET `notes` = '1039-7' WHERE `option_id` = 'burt_lake_band' AND `list_id` = 'race';
1681 #IfRow2D list_options list_id race title Burt Lake Band
1682 UPDATE `list_options` SET `notes` = '1039-7' WHERE `title` = 'Burt Lake Band' AND `list_id` = 'race';
1685 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_chippewa title Burt Lake Chippewa
1686 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','burt_lake_chippewa','Burt Lake Chippewa','1090', '0',' 1127-0', 0);
1689 #IfRow2D list_options list_id race option_id burt_lake_chippewa
1690 UPDATE `list_options` SET `notes` = '1127-0' WHERE `option_id` = 'burt_lake_chippewa' AND `list_id` = 'race';
1693 #IfRow2D list_options list_id race title Burt Lake Chippewa
1694 UPDATE `list_options` SET `notes` = '1127-0' WHERE `title` = 'Burt Lake Chippewa' AND `list_id` = 'race';
1697 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_ottawa title Burt Lake Ottawa
1698 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','burt_lake_ottawa','Burt Lake Ottawa','1100', '0',' 1412-6', 0);
1701 #IfRow2D list_options list_id race option_id burt_lake_ottawa
1702 UPDATE `list_options` SET `notes` = '1412-6' WHERE `option_id` = 'burt_lake_ottawa' AND `list_id` = 'race';
1705 #IfRow2D list_options list_id race title Burt Lake Ottawa
1706 UPDATE `list_options` SET `notes` = '1412-6' WHERE `title` = 'Burt Lake Ottawa' AND `list_id` = 'race';
1709 #IfNotRow2Dx2 list_options list_id race option_id cabazon title Cabazon
1710 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cabazon','Cabazon','1110', '0',' 1047-0', 0);
1713 #IfRow2D list_options list_id race option_id cabazon
1714 UPDATE `list_options` SET `notes` = '1047-0' WHERE `option_id` = 'cabazon' AND `list_id` = 'race';
1717 #IfRow2D list_options list_id race title Cabazon
1718 UPDATE `list_options` SET `notes` = '1047-0' WHERE `title` = 'Cabazon' AND `list_id` = 'race';
1721 #IfNotRow2Dx2 list_options list_id race option_id caddo title Caddo
1722 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','caddo','Caddo','1120', '0',' 1041-3', 0);
1725 #IfRow2D list_options list_id race option_id caddo
1726 UPDATE `list_options` SET `notes` = '1041-3' WHERE `option_id` = 'caddo' AND `list_id` = 'race';
1729 #IfRow2D list_options list_id race title Caddo
1730 UPDATE `list_options` SET `notes` = '1041-3' WHERE `title` = 'Caddo' AND `list_id` = 'race';
1733 #IfNotRow2Dx2 list_options list_id race option_id cahto title Cahto
1734 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cahto','Cahto','1130', '0',' 1054-6', 0);
1737 #IfRow2D list_options list_id race option_id cahto
1738 UPDATE `list_options` SET `notes` = '1054-6' WHERE `option_id` = 'cahto' AND `list_id` = 'race';
1741 #IfRow2D list_options list_id race title Cahto
1742 UPDATE `list_options` SET `notes` = '1054-6' WHERE `title` = 'Cahto' AND `list_id` = 'race';
1745 #IfNotRow2Dx2 list_options list_id race option_id cahuilla title Cahuilla
1746 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cahuilla','Cahuilla','1140', '0',' 1044-7', 0);
1749 #IfRow2D list_options list_id race option_id cahuilla
1750 UPDATE `list_options` SET `notes` = '1044-7' WHERE `option_id` = 'cahuilla' AND `list_id` = 'race';
1753 #IfRow2D list_options list_id race title Cahuilla
1754 UPDATE `list_options` SET `notes` = '1044-7' WHERE `title` = 'Cahuilla' AND `list_id` = 'race';
1757 #IfNotRow2Dx2 list_options list_id race option_id california_tribes title California Tribes
1758 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','california_tribes','California Tribes','1150', '0',' 1053-8', 0);
1761 #IfRow2D list_options list_id race option_id california_tribes
1762 UPDATE `list_options` SET `notes` = '1053-8' WHERE `option_id` = 'california_tribes' AND `list_id` = 'race';
1765 #IfRow2D list_options list_id race title California Tribes
1766 UPDATE `list_options` SET `notes` = '1053-8' WHERE `title` = 'California Tribes' AND `list_id` = 'race';
1769 #IfNotRow2Dx2 list_options list_id race option_id calista_yupik title Calista Yupik
1770 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','calista_yupik','Calista Yupik','1160', '0',' 1907-5', 0);
1773 #IfRow2D list_options list_id race option_id calista_yupik
1774 UPDATE `list_options` SET `notes` = '1907-5' WHERE `option_id` = 'calista_yupik' AND `list_id` = 'race';
1777 #IfRow2D list_options list_id race title Calista Yupik
1778 UPDATE `list_options` SET `notes` = '1907-5' WHERE `title` = 'Calista Yupik' AND `list_id` = 'race';
1781 #IfNotRow2Dx2 list_options list_id race option_id cambodian title Cambodian
1782 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cambodian','Cambodian','1170', '0',' 2033-9', 0);
1785 #IfRow2D list_options list_id race option_id cambodian
1786 UPDATE `list_options` SET `notes` = '2033-9' WHERE `option_id` = 'cambodian' AND `list_id` = 'race';
1789 #IfRow2D list_options list_id race title Cambodian
1790 UPDATE `list_options` SET `notes` = '2033-9' WHERE `title` = 'Cambodian' AND `list_id` = 'race';
1793 #IfNotRow2Dx2 list_options list_id race option_id campo title Campo
1794 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','campo','Campo','1180', '0',' 1223-7', 0);
1797 #IfRow2D list_options list_id race option_id campo
1798 UPDATE `list_options` SET `notes` = '1223-7' WHERE `option_id` = 'campo' AND `list_id` = 'race';
1801 #IfRow2D list_options list_id race title Campo
1802 UPDATE `list_options` SET `notes` = '1223-7' WHERE `title` = 'Campo' AND `list_id` = 'race';
1805 #IfNotRow2Dx2 list_options list_id race option_id canadian_latinamerican_indian title Canadian and Latin American Indian
1806 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','canadian_latinamerican_indian','Canadian and Latin American Indian','1190', '0',' 1068-6', 0);
1809 #IfRow2D list_options list_id race option_id canadian_latinamerican_indian
1810 UPDATE `list_options` SET `notes` = '1068-6' WHERE `option_id` = 'canadian_latinamerican_indian' AND `list_id` = 'race';
1813 #IfRow2D list_options list_id race title Canadian and Latin American Indian
1814 UPDATE `list_options` SET `notes` = '1068-6' WHERE `title` = 'Canadian and Latin American Indian' AND `list_id` = 'race';
1817 #IfNotRow2Dx2 list_options list_id race option_id canadian_indian title Canadian Indian
1818 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','canadian_indian','Canadian Indian','1200', '0',' 1069-4', 0);
1821 #IfRow2D list_options list_id race option_id canadian_indian
1822 UPDATE `list_options` SET `notes` = '1069-4' WHERE `option_id` = 'canadian_indian' AND `list_id` = 'race';
1825 #IfRow2D list_options list_id race title Canadian Indian
1826 UPDATE `list_options` SET `notes` = '1069-4' WHERE `title` = 'Canadian Indian' AND `list_id` = 'race';
1829 #IfNotRow2Dx2 list_options list_id race option_id canoncito_navajo title Canoncito Navajo
1830 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','canoncito_navajo','Canoncito Navajo','1210', '0',' 1384-7', 0);
1833 #IfRow2D list_options list_id race option_id canoncito_navajo
1834 UPDATE `list_options` SET `notes` = '1384-7' WHERE `option_id` = 'canoncito_navajo' AND `list_id` = 'race';
1837 #IfRow2D list_options list_id race title Canoncito Navajo
1838 UPDATE `list_options` SET `notes` = '1384-7' WHERE `title` = 'Canoncito Navajo' AND `list_id` = 'race';
1841 #IfNotRow2Dx2 list_options list_id race option_id cantwell title Cantwell
1842 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cantwell','Cantwell','1220', '0',' 1749-1', 0);
1845 #IfRow2D list_options list_id race option_id cantwell
1846 UPDATE `list_options` SET `notes` = '1749-1' WHERE `option_id` = 'cantwell' AND `list_id` = 'race';
1849 #IfRow2D list_options list_id race title Cantwell
1850 UPDATE `list_options` SET `notes` = '1749-1' WHERE `title` = 'Cantwell' AND `list_id` = 'race';
1853 #IfNotRow2Dx2 list_options list_id race option_id capitan_grande title Capitan Grande
1854 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','capitan_grande','Capitan Grande','1230', '0',' 1224-5', 0);
1857 #IfRow2D list_options list_id race option_id capitan_grande
1858 UPDATE `list_options` SET `notes` = '1224-5' WHERE `option_id` = 'capitan_grande' AND `list_id` = 'race';
1861 #IfRow2D list_options list_id race title Capitan Grande
1862 UPDATE `list_options` SET `notes` = '1224-5' WHERE `title` = 'Capitan Grande' AND `list_id` = 'race';
1865 #IfNotRow2Dx2 list_options list_id race option_id carolinian title Carolinian
1866 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','carolinian','Carolinian','1240', '0',' 2092-5', 0);
1869 #IfRow2D list_options list_id race option_id carolinian
1870 UPDATE `list_options` SET `notes` = '2092-5' WHERE `option_id` = 'carolinian' AND `list_id` = 'race';
1873 #IfRow2D list_options list_id race title Carolinian
1874 UPDATE `list_options` SET `notes` = '2092-5' WHERE `title` = 'Carolinian' AND `list_id` = 'race';
1877 #IfNotRow2Dx2 list_options list_id race option_id carson title Carson
1878 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','carson','Carson','1250', '0',' 1689-9', 0);
1881 #IfRow2D list_options list_id race option_id carson
1882 UPDATE `list_options` SET `notes` = '1689-9' WHERE `option_id` = 'carson' AND `list_id` = 'race';
1885 #IfRow2D list_options list_id race title Carson
1886 UPDATE `list_options` SET `notes` = '1689-9' WHERE `title` = 'Carson' AND `list_id` = 'race';
1889 #IfNotRow2Dx2 list_options list_id race option_id catawba title Catawba
1890 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','catawba','Catawba','1260', '0',' 1076-9', 0);
1893 #IfRow2D list_options list_id race option_id catawba
1894 UPDATE `list_options` SET `notes` = '1076-9' WHERE `option_id` = 'catawba' AND `list_id` = 'race';
1897 #IfRow2D list_options list_id race title Catawba
1898 UPDATE `list_options` SET `notes` = '1076-9' WHERE `title` = 'Catawba' AND `list_id` = 'race';
1901 #IfNotRow2Dx2 list_options list_id race option_id cayuga title Cayuga
1902 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cayuga','Cayuga','1270', '0',' 1286-4', 0);
1905 #IfRow2D list_options list_id race option_id cayuga
1906 UPDATE `list_options` SET `notes` = '1286-4' WHERE `option_id` = 'cayuga' AND `list_id` = 'race';
1909 #IfRow2D list_options list_id race title Cayuga
1910 UPDATE `list_options` SET `notes` = '1286-4' WHERE `title` = 'Cayuga' AND `list_id` = 'race';
1913 #IfNotRow2Dx2 list_options list_id race option_id cayuse title Cayuse
1914 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cayuse','Cayuse','1280', '0',' 1078-5', 0);
1917 #IfRow2D list_options list_id race option_id cayuse
1918 UPDATE `list_options` SET `notes` = '1078-5' WHERE `option_id` = 'cayuse' AND `list_id` = 'race';
1921 #IfRow2D list_options list_id race title Cayuse
1922 UPDATE `list_options` SET `notes` = '1078-5' WHERE `title` = 'Cayuse' AND `list_id` = 'race';
1925 #IfNotRow2Dx2 list_options list_id race option_id cedarville title Cedarville
1926 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cedarville','Cedarville','1290', '0',' 1420-9', 0);
1929 #IfRow2D list_options list_id race option_id cedarville
1930 UPDATE `list_options` SET `notes` = '1420-9' WHERE `option_id` = 'cedarville' AND `list_id` = 'race';
1933 #IfRow2D list_options list_id race title Cedarville
1934 UPDATE `list_options` SET `notes` = '1420-9' WHERE `title` = 'Cedarville' AND `list_id` = 'race';
1937 #IfNotRow2Dx2 list_options list_id race option_id celilo title Celilo
1938 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','celilo','Celilo','1300', '0',' 1393-8', 0);
1941 #IfRow2D list_options list_id race option_id celilo
1942 UPDATE `list_options` SET `notes` = '1393-8' WHERE `option_id` = 'celilo' AND `list_id` = 'race';
1945 #IfRow2D list_options list_id race title Celilo
1946 UPDATE `list_options` SET `notes` = '1393-8' WHERE `title` = 'Celilo' AND `list_id` = 'race';
1949 #IfNotRow2Dx2 list_options list_id race option_id central_american_indian title Central American Indian
1950 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','central_american_indian','Central American Indian','1310', '0',' 1070-2', 0);
1953 #IfRow2D list_options list_id race option_id central_american_indian
1954 UPDATE `list_options` SET `notes` = '1070-2' WHERE `option_id` = 'central_american_indian' AND `list_id` = 'race';
1957 #IfRow2D list_options list_id race title Central American Indian
1958 UPDATE `list_options` SET `notes` = '1070-2' WHERE `title` = 'Central American Indian' AND `list_id` = 'race';
1961 #IfNotRow2Dx2 list_options list_id race option_id tlingit_and_haida_tribes title Central Council of Tlingit and Haida Tribes
1962 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tlingit_and_haida_tribes','Central Council of Tlingit and Haida Tribes','1320', '0',' 1815-0', 0);
1965 #IfRow2D list_options list_id race option_id tlingit_and_haida_tribes
1966 UPDATE `list_options` SET `notes` = '1815-0' WHERE `option_id` = 'tlingit_and_haida_tribes' AND `list_id` = 'race';
1969 #IfRow2D list_options list_id race title Central Council of Tlingit and Haida Tribes
1970 UPDATE `list_options` SET `notes` = '1815-0' WHERE `title` = 'Central Council of Tlingit and Haida Tribes' AND `list_id` = 'race';
1973 #IfNotRow2Dx2 list_options list_id race option_id central_pomo title Central Pomo
1974 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','central_pomo','Central Pomo','1330', '0',' 1465-4', 0);
1977 #IfRow2D list_options list_id race option_id central_pomo
1978 UPDATE `list_options` SET `notes` = '1465-4' WHERE `option_id` = 'central_pomo' AND `list_id` = 'race';
1981 #IfRow2D list_options list_id race title Central Pomo
1982 UPDATE `list_options` SET `notes` = '1465-4' WHERE `title` = 'Central Pomo' AND `list_id` = 'race';
1985 #IfNotRow2Dx2 list_options list_id race option_id chalkyitsik title Chalkyitsik
1986 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chalkyitsik','Chalkyitsik','1340', '0',' 1750-9', 0);
1989 #IfRow2D list_options list_id race option_id chalkyitsik
1990 UPDATE `list_options` SET `notes` = '1750-9' WHERE `option_id` = 'chalkyitsik' AND `list_id` = 'race';
1993 #IfRow2D list_options list_id race title Chalkyitsik
1994 UPDATE `list_options` SET `notes` = '1750-9' WHERE `title` = 'Chalkyitsik' AND `list_id` = 'race';
1997 #IfNotRow2Dx2 list_options list_id race option_id chamorro title Chamorro
1998 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chamorro','Chamorro','1350', '0',' 2088-3', 0);
2001 #IfRow2D list_options list_id race option_id chamorro
2002 UPDATE `list_options` SET `notes` = '2088-3' WHERE `option_id` = 'chamorro' AND `list_id` = 'race';
2005 #IfRow2D list_options list_id race title Chamorro
2006 UPDATE `list_options` SET `notes` = '2088-3' WHERE `title` = 'Chamorro' AND `list_id` = 'race';
2009 #IfNotRow2Dx2 list_options list_id race option_id chefornak title Chefornak
2010 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chefornak','Chefornak','1360', '0',' 1908-3', 0);
2013 #IfRow2D list_options list_id race option_id chefornak
2014 UPDATE `list_options` SET `notes` = '1908-3' WHERE `option_id` = 'chefornak' AND `list_id` = 'race';
2017 #IfRow2D list_options list_id race title Chefornak
2018 UPDATE `list_options` SET `notes` = '1908-3' WHERE `title` = 'Chefornak' AND `list_id` = 'race';
2021 #IfNotRow2Dx2 list_options list_id race option_id chehalis title Chehalis
2022 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chehalis','Chehalis','1370', '0',' 1080-1', 0);
2025 #IfRow2D list_options list_id race option_id chehalis
2026 UPDATE `list_options` SET `notes` = '1080-1' WHERE `option_id` = 'chehalis' AND `list_id` = 'race';
2029 #IfRow2D list_options list_id race title Chehalis
2030 UPDATE `list_options` SET `notes` = '1080-1' WHERE `title` = 'Chehalis' AND `list_id` = 'race';
2033 #IfNotRow2Dx2 list_options list_id race option_id chemakuan title Chemakuan
2034 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chemakuan','Chemakuan','1380', '0',' 1082-7', 0);
2037 #IfRow2D list_options list_id race option_id chemakuan
2038 UPDATE `list_options` SET `notes` = '1082-7' WHERE `option_id` = 'chemakuan' AND `list_id` = 'race';
2041 #IfRow2D list_options list_id race title Chemakuan
2042 UPDATE `list_options` SET `notes` = '1082-7' WHERE `title` = 'Chemakuan' AND `list_id` = 'race';
2045 #IfNotRow2Dx2 list_options list_id race option_id chemehuevi title Chemehuevi
2046 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chemehuevi','Chemehuevi','1390', '0',' 1086-8', 0);
2049 #IfRow2D list_options list_id race option_id chemehuevi
2050 UPDATE `list_options` SET `notes` = '1086-8' WHERE `option_id` = 'chemehuevi' AND `list_id` = 'race';
2053 #IfRow2D list_options list_id race title Chemehuevi
2054 UPDATE `list_options` SET `notes` = '1086-8' WHERE `title` = 'Chemehuevi' AND `list_id` = 'race';
2057 #IfNotRow2Dx2 list_options list_id race option_id chenega title Chenega
2058 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chenega','Chenega','1400', '0',' 1985-1', 0);
2061 #IfRow2D list_options list_id race option_id chenega
2062 UPDATE `list_options` SET `notes` = '1985-1' WHERE `option_id` = 'chenega' AND `list_id` = 'race';
2065 #IfRow2D list_options list_id race title Chenega
2066 UPDATE `list_options` SET `notes` = '1985-1' WHERE `title` = 'Chenega' AND `list_id` = 'race';
2069 #IfNotRow2Dx2 list_options list_id race option_id cherokee title Cherokee
2070 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cherokee','Cherokee','1410', '0',' 1088-4', 0);
2073 #IfRow2D list_options list_id race option_id cherokee
2074 UPDATE `list_options` SET `notes` = '1088-4' WHERE `option_id` = 'cherokee' AND `list_id` = 'race';
2077 #IfRow2D list_options list_id race title Cherokee
2078 UPDATE `list_options` SET `notes` = '1088-4' WHERE `title` = 'Cherokee' AND `list_id` = 'race';
2081 #IfNotRow2Dx2 list_options list_id race option_id cherokee_alabama title Cherokee Alabama
2082 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cherokee_alabama','Cherokee Alabama','1420', '0',' 1089-2', 0);
2085 #IfRow2D list_options list_id race option_id cherokee_alabama
2086 UPDATE `list_options` SET `notes` = '1089-2' WHERE `option_id` = 'cherokee_alabama' AND `list_id` = 'race';
2089 #IfRow2D list_options list_id race title Cherokee Alabama
2090 UPDATE `list_options` SET `notes` = '1089-2' WHERE `title` = 'Cherokee Alabama' AND `list_id` = 'race';
2093 #IfNotRow2Dx2 list_options list_id race option_id cherokee_shawnee title Cherokee Shawnee
2094 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cherokee_shawnee','Cherokee Shawnee','1430', '0',' 1100-7', 0);
2097 #IfRow2D list_options list_id race option_id cherokee_shawnee
2098 UPDATE `list_options` SET `notes` = '1100-7' WHERE `option_id` = 'cherokee_shawnee' AND `list_id` = 'race';
2101 #IfRow2D list_options list_id race title Cherokee Shawnee
2102 UPDATE `list_options` SET `notes` = '1100-7' WHERE `title` = 'Cherokee Shawnee' AND `list_id` = 'race';
2105 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_northeast_alabama title Cherokees of Northeast Alabama
2106 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_northeast_alabama','Cherokees of Northeast Alabama','1440', '0',' 1090-0', 0);
2109 #IfRow2D list_options list_id race option_id cherokees_of_northeast_alabama
2110 UPDATE `list_options` SET `notes` = '1090-0' WHERE `option_id` = 'cherokees_of_northeast_alabama' AND `list_id` = 'race';
2113 #IfRow2D list_options list_id race title Cherokees of Northeast Alabama
2114 UPDATE `list_options` SET `notes` = '1090-0' WHERE `title` = 'Cherokees of Northeast Alabama' AND `list_id` = 'race';
2117 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_southeast_alabama title Cherokees of Southeast Alabama
2118 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_southeast_alabama','Cherokees of Southeast Alabama','1450', '0',' 1091-8', 0);
2121 #IfRow2D list_options list_id race option_id cherokees_of_southeast_alabama
2122 UPDATE `list_options` SET `notes` = '1091-8' WHERE `option_id` = 'cherokees_of_southeast_alabama' AND `list_id` = 'race';
2125 #IfRow2D list_options list_id race title Cherokees of Southeast Alabama
2126 UPDATE `list_options` SET `notes` = '1091-8' WHERE `title` = 'Cherokees of Southeast Alabama' AND `list_id` = 'race';
2129 #IfNotRow2Dx2 list_options list_id race option_id chevak title Chevak
2130 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chevak','Chevak','1460', '0',' 1909-1', 0);
2133 #IfRow2D list_options list_id race option_id chevak
2134 UPDATE `list_options` SET `notes` = '1909-1' WHERE `option_id` = 'chevak' AND `list_id` = 'race';
2137 #IfRow2D list_options list_id race title Chevak
2138 UPDATE `list_options` SET `notes` = '1909-1' WHERE `title` = 'Chevak' AND `list_id` = 'race';
2141 #IfNotRow2Dx2 list_options list_id race option_id cheyenne title Cheyenne
2142 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cheyenne','Cheyenne','1470', '0',' 1102-3', 0);
2145 #IfRow2D list_options list_id race option_id cheyenne
2146 UPDATE `list_options` SET `notes` = '1102-3' WHERE `option_id` = 'cheyenne' AND `list_id` = 'race';
2149 #IfRow2D list_options list_id race title Cheyenne
2150 UPDATE `list_options` SET `notes` = '1102-3' WHERE `title` = 'Cheyenne' AND `list_id` = 'race';
2153 #IfNotRow2Dx2 list_options list_id race option_id cheyenne_river_sioux title Cheyenne River Sioux
2154 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cheyenne_river_sioux','Cheyenne River Sioux','1480', '0',' 1612-1', 0);
2157 #IfRow2D list_options list_id race option_id cheyenne_river_sioux
2158 UPDATE `list_options` SET `notes` = '1612-1' WHERE `option_id` = 'cheyenne_river_sioux' AND `list_id` = 'race';
2161 #IfRow2D list_options list_id race title Cheyenne River Sioux
2162 UPDATE `list_options` SET `notes` = '1612-1' WHERE `title` = 'Cheyenne River Sioux' AND `list_id` = 'race';
2165 #IfNotRow2Dx2 list_options list_id race option_id cheyenne-arapaho title Cheyenne-Arapaho
2166 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cheyenne-arapaho','Cheyenne-Arapaho','1490', '0',' 1106-4', 0);
2169 #IfRow2D list_options list_id race option_id cheyenne-arapaho
2170 UPDATE `list_options` SET `notes` = '1106-4' WHERE `option_id` = 'cheyenne-arapaho' AND `list_id` = 'race';
2173 #IfRow2D list_options list_id race title Cheyenne-Arapaho
2174 UPDATE `list_options` SET `notes` = '1106-4' WHERE `title` = 'Cheyenne-Arapaho' AND `list_id` = 'race';
2177 #IfNotRow2Dx2 list_options list_id race option_id chickahominy title Chickahominy
2178 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chickahominy','Chickahominy','1500', '0',' 1108-0', 0);
2181 #IfRow2D list_options list_id race option_id chickahominy
2182 UPDATE `list_options` SET `notes` = '1108-0' WHERE `option_id` = 'chickahominy' AND `list_id` = 'race';
2185 #IfRow2D list_options list_id race title Chickahominy
2186 UPDATE `list_options` SET `notes` = '1108-0' WHERE `title` = 'Chickahominy' AND `list_id` = 'race';
2189 #IfNotRow2Dx2 list_options list_id race option_id chickaloon title Chickaloon
2190 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chickaloon','Chickaloon','1510', '0',' 1751-7', 0);
2193 #IfRow2D list_options list_id race option_id chickaloon
2194 UPDATE `list_options` SET `notes` = '1751-7' WHERE `option_id` = 'chickaloon' AND `list_id` = 'race';
2197 #IfRow2D list_options list_id race title Chickaloon
2198 UPDATE `list_options` SET `notes` = '1751-7' WHERE `title` = 'Chickaloon' AND `list_id` = 'race';
2201 #IfNotRow2Dx2 list_options list_id race option_id chickasaw title Chickasaw
2202 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chickasaw','Chickasaw','1520', '0',' 1112-2', 0);
2205 #IfRow2D list_options list_id race option_id chickasaw
2206 UPDATE `list_options` SET `notes` = '1112-2' WHERE `option_id` = 'chickasaw' AND `list_id` = 'race';
2209 #IfRow2D list_options list_id race title Chickasaw
2210 UPDATE `list_options` SET `notes` = '1112-2' WHERE `title` = 'Chickasaw' AND `list_id` = 'race';
2213 #IfNotRow2Dx2 list_options list_id race option_id chignik title Chignik
2214 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chignik','Chignik','1530', '0',' 1973-7', 0);
2217 #IfRow2D list_options list_id race option_id chignik
2218 UPDATE `list_options` SET `notes` = '1973-7' WHERE `option_id` = 'chignik' AND `list_id` = 'race';
2221 #IfRow2D list_options list_id race title Chignik
2222 UPDATE `list_options` SET `notes` = '1973-7' WHERE `title` = 'Chignik' AND `list_id` = 'race';
2225 #IfNotRow2Dx2 list_options list_id race option_id chignik_lagoon title Chignik Lagoon
2226 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chignik_lagoon','Chignik Lagoon','1540', '0',' 2013-1', 0);
2229 #IfRow2D list_options list_id race option_id chignik_lagoon
2230 UPDATE `list_options` SET `notes` = '2013-1' WHERE `option_id` = 'chignik_lagoon' AND `list_id` = 'race';
2233 #IfRow2D list_options list_id race title Chignik Lagoon
2234 UPDATE `list_options` SET `notes` = '2013-1' WHERE `title` = 'Chignik Lagoon' AND `list_id` = 'race';
2237 #IfNotRow2Dx2 list_options list_id race option_id chignik_lake title Chignik Lake
2238 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chignik_lake','Chignik Lake','1550', '0',' 1974-5', 0);
2241 #IfRow2D list_options list_id race option_id chignik_lake
2242 UPDATE `list_options` SET `notes` = '1974-5' WHERE `option_id` = 'chignik_lake' AND `list_id` = 'race';
2245 #IfRow2D list_options list_id race title Chignik Lake
2246 UPDATE `list_options` SET `notes` = '1974-5' WHERE `title` = 'Chignik Lake' AND `list_id` = 'race';
2249 #IfNotRow2Dx2 list_options list_id race option_id chilkat title Chilkat
2250 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chilkat','Chilkat','1560', '0',' 1816-8', 0);
2253 #IfRow2D list_options list_id race option_id chilkat
2254 UPDATE `list_options` SET `notes` = '1816-8' WHERE `option_id` = 'chilkat' AND `list_id` = 'race';
2257 #IfRow2D list_options list_id race title Chilkat
2258 UPDATE `list_options` SET `notes` = '1816-8' WHERE `title` = 'Chilkat' AND `list_id` = 'race';
2261 #IfNotRow2Dx2 list_options list_id race option_id chilkoot title Chilkoot
2262 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chilkoot','Chilkoot','1570', '0',' 1817-6', 0);
2265 #IfRow2D list_options list_id race option_id chilkoot
2266 UPDATE `list_options` SET `notes` = '1817-6' WHERE `option_id` = 'chilkoot' AND `list_id` = 'race';
2269 #IfRow2D list_options list_id race title Chilkoot
2270 UPDATE `list_options` SET `notes` = '1817-6' WHERE `title` = 'Chilkoot' AND `list_id` = 'race';
2273 #IfNotRow2Dx2 list_options list_id race option_id chimariko title Chimariko
2274 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chimariko','Chimariko','1580', '0',' 1055-3', 0);
2277 #IfRow2D list_options list_id race option_id chimariko
2278 UPDATE `list_options` SET `notes` = '1055-3' WHERE `option_id` = 'chimariko' AND `list_id` = 'race';
2281 #IfRow2D list_options list_id race title Chimariko
2282 UPDATE `list_options` SET `notes` = '1055-3' WHERE `title` = 'Chimariko' AND `list_id` = 'race';
2285 #IfNotRow2Dx2 list_options list_id race option_id chinese title Chinese
2286 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chinese','Chinese','1590', '0',' 2034-7', 0);
2289 #IfRow2D list_options list_id race option_id chinese
2290 UPDATE `list_options` SET `notes` = '2034-7' WHERE `option_id` = 'chinese' AND `list_id` = 'race';
2293 #IfRow2D list_options list_id race title Chinese
2294 UPDATE `list_options` SET `notes` = '2034-7' WHERE `title` = 'Chinese' AND `list_id` = 'race';
2297 #IfNotRow2Dx2 list_options list_id race option_id chinik title Chinik
2298 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chinik','Chinik','1600', '0',' 1855-6', 0);
2301 #IfRow2D list_options list_id race option_id chinik
2302 UPDATE `list_options` SET `notes` = '1855-6' WHERE `option_id` = 'chinik' AND `list_id` = 'race';
2305 #IfRow2D list_options list_id race title Chinik
2306 UPDATE `list_options` SET `notes` = '1855-6' WHERE `title` = 'Chinik' AND `list_id` = 'race';
2309 #IfNotRow2Dx2 list_options list_id race option_id chinook title Chinook
2310 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chinook','Chinook','1610', '0',' 1114-8', 0);
2313 #IfRow2D list_options list_id race option_id chinook
2314 UPDATE `list_options` SET `notes` = '1114-8' WHERE `option_id` = 'chinook' AND `list_id` = 'race';
2317 #IfRow2D list_options list_id race title Chinook
2318 UPDATE `list_options` SET `notes` = '1114-8' WHERE `title` = 'Chinook' AND `list_id` = 'race';
2321 #IfNotRow2Dx2 list_options list_id race option_id chippewa title Chippewa
2322 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chippewa','Chippewa','1620', '0',' 1123-9', 0);
2325 #IfRow2D list_options list_id race option_id chippewa
2326 UPDATE `list_options` SET `notes` = '1123-9' WHERE `option_id` = 'chippewa' AND `list_id` = 'race';
2329 #IfRow2D list_options list_id race title Chippewa
2330 UPDATE `list_options` SET `notes` = '1123-9' WHERE `title` = 'Chippewa' AND `list_id` = 'race';
2333 #IfNotRow2Dx2 list_options list_id race option_id chippewa_cree title Chippewa Cree
2334 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chippewa_cree','Chippewa Cree','1630', '0',' 1150-2', 0);
2337 #IfRow2D list_options list_id race option_id chippewa_cree
2338 UPDATE `list_options` SET `notes` = '1150-2' WHERE `option_id` = 'chippewa_cree' AND `list_id` = 'race';
2341 #IfRow2D list_options list_id race title Chippewa Cree
2342 UPDATE `list_options` SET `notes` = '1150-2' WHERE `title` = 'Chippewa Cree' AND `list_id` = 'race';
2345 #IfNotRow2Dx2 list_options list_id race option_id chiricahua title Chiricahua
2346 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chiricahua','Chiricahua','1640', '0',' 1011-6', 0);
2349 #IfRow2D list_options list_id race option_id chiricahua
2350 UPDATE `list_options` SET `notes` = '1011-6' WHERE `option_id` = 'chiricahua' AND `list_id` = 'race';
2353 #IfRow2D list_options list_id race title Chiricahua
2354 UPDATE `list_options` SET `notes` = '1011-6' WHERE `title` = 'Chiricahua' AND `list_id` = 'race';
2357 #IfNotRow2Dx2 list_options list_id race option_id chistochina title Chistochina
2358 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chistochina','Chistochina','1650', '0',' 1752-5', 0);
2361 #IfRow2D list_options list_id race option_id chistochina
2362 UPDATE `list_options` SET `notes` = '1752-5' WHERE `option_id` = 'chistochina' AND `list_id` = 'race';
2365 #IfRow2D list_options list_id race title Chistochina
2366 UPDATE `list_options` SET `notes` = '1752-5' WHERE `title` = 'Chistochina' AND `list_id` = 'race';
2369 #IfNotRow2Dx2 list_options list_id race option_id chitimacha title Chitimacha
2370 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chitimacha','Chitimacha','1660', '0',' 1153-6', 0);
2373 #IfRow2D list_options list_id race option_id chitimacha
2374 UPDATE `list_options` SET `notes` = '1153-6' WHERE `option_id` = 'chitimacha' AND `list_id` = 'race';
2377 #IfRow2D list_options list_id race title Chitimacha
2378 UPDATE `list_options` SET `notes` = '1153-6' WHERE `title` = 'Chitimacha' AND `list_id` = 'race';
2381 #IfNotRow2Dx2 list_options list_id race option_id chitina title Chitina
2382 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chitina','Chitina','1670', '0',' 1753-3', 0);
2385 #IfRow2D list_options list_id race option_id chitina
2386 UPDATE `list_options` SET `notes` = '1753-3' WHERE `option_id` = 'chitina' AND `list_id` = 'race';
2389 #IfRow2D list_options list_id race title Chitina
2390 UPDATE `list_options` SET `notes` = '1753-3' WHERE `title` = 'Chitina' AND `list_id` = 'race';
2393 #IfNotRow2Dx2 list_options list_id race option_id choctaw title Choctaw
2394 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','choctaw','Choctaw','1680', '0',' 1155-1', 0);
2397 #IfRow2D list_options list_id race option_id choctaw
2398 UPDATE `list_options` SET `notes` = '1155-1' WHERE `option_id` = 'choctaw' AND `list_id` = 'race';
2401 #IfRow2D list_options list_id race title Choctaw
2402 UPDATE `list_options` SET `notes` = '1155-1' WHERE `title` = 'Choctaw' AND `list_id` = 'race';
2405 #IfNotRow2Dx2 list_options list_id race option_id chuathbaluk title Chuathbaluk
2406 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chuathbaluk','Chuathbaluk','1690', '0',' 1910-9', 0);
2409 #IfRow2D list_options list_id race option_id chuathbaluk
2410 UPDATE `list_options` SET `notes` = '1910-9' WHERE `option_id` = 'chuathbaluk' AND `list_id` = 'race';
2413 #IfRow2D list_options list_id race title Chuathbaluk
2414 UPDATE `list_options` SET `notes` = '1910-9' WHERE `title` = 'Chuathbaluk' AND `list_id` = 'race';
2417 #IfNotRow2Dx2 list_options list_id race option_id chugach_aleut title Chugach Aleut
2418 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chugach_aleut','Chugach Aleut','1700', '0',' 1984-4', 0);
2421 #IfRow2D list_options list_id race option_id chugach_aleut
2422 UPDATE `list_options` SET `notes` = '1984-4' WHERE `option_id` = 'chugach_aleut' AND `list_id` = 'race';
2425 #IfRow2D list_options list_id race title Chugach Aleut
2426 UPDATE `list_options` SET `notes` = '1984-4' WHERE `title` = 'Chugach Aleut' AND `list_id` = 'race';
2429 #IfNotRow2Dx2 list_options list_id race option_id chugach_corporation title Chugach Corporation
2430 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chugach_corporation','Chugach Corporation','1710', '0',' 1986-9', 0);
2433 #IfRow2D list_options list_id race option_id chugach_corporation
2434 UPDATE `list_options` SET `notes` = '1986-9' WHERE `option_id` = 'chugach_corporation' AND `list_id` = 'race';
2437 #IfRow2D list_options list_id race title Chugach Corporation
2438 UPDATE `list_options` SET `notes` = '1986-9' WHERE `title` = 'Chugach Corporation' AND `list_id` = 'race';
2441 #IfNotRow2Dx2 list_options list_id race option_id chukchansi title Chukchansi
2442 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chukchansi','Chukchansi','1720', '0',' 1718-6', 0);
2445 #IfRow2D list_options list_id race option_id chukchansi
2446 UPDATE `list_options` SET `notes` = '1718-6' WHERE `option_id` = 'chukchansi' AND `list_id` = 'race';
2449 #IfRow2D list_options list_id race title Chukchansi
2450 UPDATE `list_options` SET `notes` = '1718-6' WHERE `title` = 'Chukchansi' AND `list_id` = 'race';
2453 #IfNotRow2Dx2 list_options list_id race option_id chumash title Chumash
2454 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chumash','Chumash','1730', '0',' 1162-7', 0);
2457 #IfRow2D list_options list_id race option_id chumash
2458 UPDATE `list_options` SET `notes` = '1162-7' WHERE `option_id` = 'chumash' AND `list_id` = 'race';
2461 #IfRow2D list_options list_id race title Chumash
2462 UPDATE `list_options` SET `notes` = '1162-7' WHERE `title` = 'Chumash' AND `list_id` = 'race';
2465 #IfNotRow2Dx2 list_options list_id race option_id chuukese title Chuukese
2466 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','chuukese','Chuukese','1740', '0',' 2097-4', 0);
2469 #IfRow2D list_options list_id race option_id chuukese
2470 UPDATE `list_options` SET `notes` = '2097-4' WHERE `option_id` = 'chuukese' AND `list_id` = 'race';
2473 #IfRow2D list_options list_id race title Chuukese
2474 UPDATE `list_options` SET `notes` = '2097-4' WHERE `title` = 'Chuukese' AND `list_id` = 'race';
2477 #IfNotRow2Dx2 list_options list_id race option_id circle title Circle
2478 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','circle','Circle','1750', '0',' 1754-1', 0);
2481 #IfRow2D list_options list_id race option_id circle
2482 UPDATE `list_options` SET `notes` = '1754-1' WHERE `option_id` = 'circle' AND `list_id` = 'race';
2485 #IfRow2D list_options list_id race title Circle
2486 UPDATE `list_options` SET `notes` = '1754-1' WHERE `title` = 'Circle' AND `list_id` = 'race';
2489 #IfNotRow2Dx2 list_options list_id race option_id citizen_band_potawatomi title Citizen Band Potawatomi
2490 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','citizen_band_potawatomi','Citizen Band Potawatomi','1760', '0',' 1479-5', 0);
2493 #IfRow2D list_options list_id race option_id citizen_band_potawatomi
2494 UPDATE `list_options` SET `notes` = '1479-5' WHERE `option_id` = 'citizen_band_potawatomi' AND `list_id` = 'race';
2497 #IfRow2D list_options list_id race title Citizen Band Potawatomi
2498 UPDATE `list_options` SET `notes` = '1479-5' WHERE `title` = 'Citizen Band Potawatomi' AND `list_id` = 'race';
2501 #IfNotRow2D list_options list_id race option_id clarks_point
2502 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','clarks_point',"Clark's Point",'1770', '0',' 1911-7', 0);
2505 #IfRow2D list_options list_id race option_id clarks_point
2506 UPDATE `list_options` SET `notes` = '1911-7' WHERE `option_id` = 'clarks_point' AND `list_id` = 'race';
2509 #IfNotRow2Dx2 list_options list_id race option_id clatsop title Clatsop
2510 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','clatsop','Clatsop','1780', '0',' 1115-5', 0);
2513 #IfRow2D list_options list_id race option_id clatsop
2514 UPDATE `list_options` SET `notes` = '1115-5' WHERE `option_id` = 'clatsop' AND `list_id` = 'race';
2517 #IfRow2D list_options list_id race title Clatsop
2518 UPDATE `list_options` SET `notes` = '1115-5' WHERE `title` = 'Clatsop' AND `list_id` = 'race';
2521 #IfNotRow2Dx2 list_options list_id race option_id clear_lake title Clear Lake
2522 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','clear_lake','Clear Lake','1790', '0',' 1165-0', 0);
2525 #IfRow2D list_options list_id race option_id clear_lake
2526 UPDATE `list_options` SET `notes` = '1165-0' WHERE `option_id` = 'clear_lake' AND `list_id` = 'race';
2529 #IfRow2D list_options list_id race title Clear Lake
2530 UPDATE `list_options` SET `notes` = '1165-0' WHERE `title` = 'Clear Lake' AND `list_id` = 'race';
2533 #IfNotRow2Dx2 list_options list_id race option_id clifton_choctaw title Clifton Choctaw
2534 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','clifton_choctaw','Clifton Choctaw','1800', '0',' 1156-9', 0);
2537 #IfRow2D list_options list_id race option_id clifton_choctaw
2538 UPDATE `list_options` SET `notes` = '1156-9' WHERE `option_id` = 'clifton_choctaw' AND `list_id` = 'race';
2541 #IfRow2D list_options list_id race title Clifton Choctaw
2542 UPDATE `list_options` SET `notes` = '1156-9' WHERE `title` = 'Clifton Choctaw' AND `list_id` = 'race';
2545 #IfNotRow2Dx2 list_options list_id race option_id coast_miwok title Coast Miwok
2546 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coast_miwok','Coast Miwok','1810', '0',' 1056-1', 0);
2549 #IfRow2D list_options list_id race option_id coast_miwok
2550 UPDATE `list_options` SET `notes` = '1056-1' WHERE `option_id` = 'coast_miwok' AND `list_id` = 'race';
2553 #IfRow2D list_options list_id race title Coast Miwok
2554 UPDATE `list_options` SET `notes` = '1056-1' WHERE `title` = 'Coast Miwok' AND `list_id` = 'race';
2557 #IfNotRow2Dx2 list_options list_id race option_id coast_yurok title Coast Yurok
2558 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coast_yurok','Coast Yurok','1820', '0',' 1733-5', 0);
2561 #IfRow2D list_options list_id race option_id coast_yurok
2562 UPDATE `list_options` SET `notes` = '1733-5' WHERE `option_id` = 'coast_yurok' AND `list_id` = 'race';
2565 #IfRow2D list_options list_id race title Coast Yurok
2566 UPDATE `list_options` SET `notes` = '1733-5' WHERE `title` = 'Coast Yurok' AND `list_id` = 'race';
2569 #IfNotRow2Dx2 list_options list_id race option_id cochiti title Cochiti
2570 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cochiti','Cochiti','1830', '0',' 1492-8', 0);
2573 #IfRow2D list_options list_id race option_id cochiti
2574 UPDATE `list_options` SET `notes` = '1492-8' WHERE `option_id` = 'cochiti' AND `list_id` = 'race';
2577 #IfRow2D list_options list_id race title Cochiti
2578 UPDATE `list_options` SET `notes` = '1492-8' WHERE `title` = 'Cochiti' AND `list_id` = 'race';
2581 #IfNotRow2Dx2 list_options list_id race option_id cocopah title Cocopah
2582 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cocopah','Cocopah','1840', '0',' 1725-1', 0);
2585 #IfRow2D list_options list_id race option_id cocopah
2586 UPDATE `list_options` SET `notes` = '1725-1' WHERE `option_id` = 'cocopah' AND `list_id` = 'race';
2589 #IfRow2D list_options list_id race title Cocopah
2590 UPDATE `list_options` SET `notes` = '1725-1' WHERE `title` = 'Cocopah' AND `list_id` = 'race';
2593 #IfNotRow2D list_options list_id race option_id coeur_dalene
2594 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coeur_dalene',"Coeur D'Alene",'1850', '0',' 1167-6', 0);
2597 #IfRow2D list_options list_id race option_id coeur_dalene
2598 UPDATE `list_options` SET `notes` = '1167-6' WHERE `option_id` = 'coeur_dalene' AND `list_id` = 'race';
2601 #IfNotRow2Dx2 list_options list_id race option_id coharie title Coharie
2602 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coharie','Coharie','1860', '0',' 1169-2', 0);
2605 #IfRow2D list_options list_id race option_id coharie
2606 UPDATE `list_options` SET `notes` = '1169-2' WHERE `option_id` = 'coharie' AND `list_id` = 'race';
2609 #IfRow2D list_options list_id race title Coharie
2610 UPDATE `list_options` SET `notes` = '1169-2' WHERE `title` = 'Coharie' AND `list_id` = 'race';
2613 #IfNotRow2Dx2 list_options list_id race option_id colorado_river title Colorado River
2614 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','colorado_river','Colorado River','1870', '0',' 1171-8', 0);
2617 #IfRow2D list_options list_id race option_id colorado_river
2618 UPDATE `list_options` SET `notes` = '1171-8' WHERE `option_id` = 'colorado_river' AND `list_id` = 'race';
2621 #IfRow2D list_options list_id race title Colorado River
2622 UPDATE `list_options` SET `notes` = '1171-8' WHERE `title` = 'Colorado River' AND `list_id` = 'race';
2625 #IfNotRow2Dx2 list_options list_id race option_id columbia title Columbia
2626 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','columbia','Columbia','1880', '0',' 1394-6', 0);
2629 #IfRow2D list_options list_id race option_id columbia
2630 UPDATE `list_options` SET `notes` = '1394-6' WHERE `option_id` = 'columbia' AND `list_id` = 'race';
2633 #IfRow2D list_options list_id race title Columbia
2634 UPDATE `list_options` SET `notes` = '1394-6' WHERE `title` = 'Columbia' AND `list_id` = 'race';
2637 #IfNotRow2Dx2 list_options list_id race option_id columbia_river_chinook title Columbia River Chinook
2638 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','columbia_river_chinook','Columbia River Chinook','1890', '0',' 1116-3', 0);
2641 #IfRow2D list_options list_id race option_id columbia_river_chinook
2642 UPDATE `list_options` SET `notes` = '1116-3' WHERE `option_id` = 'columbia_river_chinook' AND `list_id` = 'race';
2645 #IfRow2D list_options list_id race title Columbia River Chinook
2646 UPDATE `list_options` SET `notes` = '1116-3' WHERE `title` = 'Columbia River Chinook' AND `list_id` = 'race';
2649 #IfNotRow2Dx2 list_options list_id race option_id colville title Colville
2650 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','colville','Colville','1900', '0',' 1173-4', 0);
2653 #IfRow2D list_options list_id race option_id colville
2654 UPDATE `list_options` SET `notes` = '1173-4' WHERE `option_id` = 'colville' AND `list_id` = 'race';
2657 #IfRow2D list_options list_id race title Colville
2658 UPDATE `list_options` SET `notes` = '1173-4' WHERE `title` = 'Colville' AND `list_id` = 'race';
2661 #IfNotRow2Dx2 list_options list_id race option_id comanche title Comanche
2662 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','comanche','Comanche','1910', '0',' 1175-9', 0);
2665 #IfRow2D list_options list_id race option_id comanche
2666 UPDATE `list_options` SET `notes` = '1175-9' WHERE `option_id` = 'comanche' AND `list_id` = 'race';
2669 #IfRow2D list_options list_id race title Comanche
2670 UPDATE `list_options` SET `notes` = '1175-9' WHERE `title` = 'Comanche' AND `list_id` = 'race';
2673 #IfNotRow2Dx2 list_options list_id race option_id cook_inlet title Cook Inlet
2674 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cook_inlet','Cook Inlet','1920', '0',' 1755-8', 0);
2677 #IfRow2D list_options list_id race option_id cook_inlet
2678 UPDATE `list_options` SET `notes` = '1755-8' WHERE `option_id` = 'cook_inlet' AND `list_id` = 'race';
2681 #IfRow2D list_options list_id race title Cook Inlet
2682 UPDATE `list_options` SET `notes` = '1755-8' WHERE `title` = 'Cook Inlet' AND `list_id` = 'race';
2685 #IfNotRow2Dx2 list_options list_id race option_id coos title Coos
2686 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coos','Coos','1930', '0',' 1180-9', 0);
2689 #IfRow2D list_options list_id race option_id coos
2690 UPDATE `list_options` SET `notes` = '1180-9' WHERE `option_id` = 'coos' AND `list_id` = 'race';
2693 #IfRow2D list_options list_id race title Coos
2694 UPDATE `list_options` SET `notes` = '1180-9' WHERE `title` = 'Coos' AND `list_id` = 'race';
2697 #IfNotRow2Dx2 list_options list_id race option_id coos_lower_umpqua_siuslaw title Coos, Lower Umpqua, Siuslaw
2698 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coos_lower_umpqua_siuslaw','Coos, Lower Umpqua, Siuslaw','1940', '0',' 1178-3', 0);
2701 #IfRow2D list_options list_id race option_id coos_lower_umpqua_siuslaw
2702 UPDATE `list_options` SET `notes` = '1178-3' WHERE `option_id` = 'coos_lower_umpqua_siuslaw' AND `list_id` = 'race';
2705 #IfRow2D list_options list_id race title Coos, Lower Umpqua, Siuslaw
2706 UPDATE `list_options` SET `notes` = '1178-3' WHERE `title` = 'Coos, Lower Umpqua, Siuslaw' AND `list_id` = 'race';
2709 #IfNotRow2Dx2 list_options list_id race option_id copper_center title Copper Center
2710 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','copper_center','Copper Center','1950', '0',' 1756-6', 0);
2713 #IfRow2D list_options list_id race option_id copper_center
2714 UPDATE `list_options` SET `notes` = '1756-6' WHERE `option_id` = 'copper_center' AND `list_id` = 'race';
2717 #IfRow2D list_options list_id race title Copper Center
2718 UPDATE `list_options` SET `notes` = '1756-6' WHERE `title` = 'Copper Center' AND `list_id` = 'race';
2721 #IfNotRow2Dx2 list_options list_id race option_id copper_river title Copper River
2722 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','copper_river','Copper River','1960', '0',' 1757-4', 0);
2725 #IfRow2D list_options list_id race option_id copper_river
2726 UPDATE `list_options` SET `notes` = '1757-4' WHERE `option_id` = 'copper_river' AND `list_id` = 'race';
2729 #IfRow2D list_options list_id race title Copper River
2730 UPDATE `list_options` SET `notes` = '1757-4' WHERE `title` = 'Copper River' AND `list_id` = 'race';
2733 #IfNotRow2Dx2 list_options list_id race option_id coquilles title Coquilles
2734 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coquilles','Coquilles','1970', '0',' 1182-5', 0);
2737 #IfRow2D list_options list_id race option_id coquilles
2738 UPDATE `list_options` SET `notes` = '1182-5' WHERE `option_id` = 'coquilles' AND `list_id` = 'race';
2741 #IfRow2D list_options list_id race title Coquilles
2742 UPDATE `list_options` SET `notes` = '1182-5' WHERE `title` = 'Coquilles' AND `list_id` = 'race';
2745 #IfNotRow2Dx2 list_options list_id race option_id costanoan title Costanoan
2746 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','costanoan','Costanoan','1980', '0',' 1184-1', 0);
2749 #IfRow2D list_options list_id race option_id costanoan
2750 UPDATE `list_options` SET `notes` = '1184-1' WHERE `option_id` = 'costanoan' AND `list_id` = 'race';
2753 #IfRow2D list_options list_id race title Costanoan
2754 UPDATE `list_options` SET `notes` = '1184-1' WHERE `title` = 'Costanoan' AND `list_id` = 'race';
2757 #IfNotRow2Dx2 list_options list_id race option_id council title Council
2758 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','council','Council','1990', '0',' 1856-4', 0);
2761 #IfRow2D list_options list_id race option_id council
2762 UPDATE `list_options` SET `notes` = '1856-4' WHERE `option_id` = 'council' AND `list_id` = 'race';
2765 #IfRow2D list_options list_id race title Council
2766 UPDATE `list_options` SET `notes` = '1856-4' WHERE `title` = 'Council' AND `list_id` = 'race';
2769 #IfNotRow2Dx2 list_options list_id race option_id coushatta title Coushatta
2770 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','coushatta','Coushatta','2000', '0',' 1186-6', 0);
2773 #IfRow2D list_options list_id race option_id coushatta
2774 UPDATE `list_options` SET `notes` = '1186-6' WHERE `option_id` = 'coushatta' AND `list_id` = 'race';
2777 #IfRow2D list_options list_id race title Coushatta
2778 UPDATE `list_options` SET `notes` = '1186-6' WHERE `title` = 'Coushatta' AND `list_id` = 'race';
2781 #IfNotRow2Dx2 list_options list_id race option_id cow_creek_umpqua title Cow Creek Umpqua
2782 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cow_creek_umpqua','Cow Creek Umpqua','2010', '0',' 1668-3', 0);
2785 #IfRow2D list_options list_id race option_id cow_creek_umpqua
2786 UPDATE `list_options` SET `notes` = '1668-3' WHERE `option_id` = 'cow_creek_umpqua' AND `list_id` = 'race';
2789 #IfRow2D list_options list_id race title Cow Creek Umpqua
2790 UPDATE `list_options` SET `notes` = '1668-3' WHERE `title` = 'Cow Creek Umpqua' AND `list_id` = 'race';
2793 #IfNotRow2Dx2 list_options list_id race option_id cowlitz title Cowlitz
2794 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cowlitz','Cowlitz','2020', '0',' 1189-0', 0);
2797 #IfRow2D list_options list_id race option_id cowlitz
2798 UPDATE `list_options` SET `notes` = '1189-0' WHERE `option_id` = 'cowlitz' AND `list_id` = 'race';
2801 #IfRow2D list_options list_id race title Cowlitz
2802 UPDATE `list_options` SET `notes` = '1189-0' WHERE `title` = 'Cowlitz' AND `list_id` = 'race';
2805 #IfNotRow2Dx2 list_options list_id race option_id craig title Craig
2806 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','craig','Craig','2030', '0',' 1818-4', 0);
2809 #IfRow2D list_options list_id race option_id craig
2810 UPDATE `list_options` SET `notes` = '1818-4' WHERE `option_id` = 'craig' AND `list_id` = 'race';
2813 #IfRow2D list_options list_id race title Craig
2814 UPDATE `list_options` SET `notes` = '1818-4' WHERE `title` = 'Craig' AND `list_id` = 'race';
2817 #IfNotRow2Dx2 list_options list_id race option_id cree title Cree
2818 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cree','Cree','2040', '0',' 1191-6', 0);
2821 #IfRow2D list_options list_id race option_id cree
2822 UPDATE `list_options` SET `notes` = '1191-6' WHERE `option_id` = 'cree' AND `list_id` = 'race';
2825 #IfRow2D list_options list_id race title Cree
2826 UPDATE `list_options` SET `notes` = '1191-6' WHERE `title` = 'Cree' AND `list_id` = 'race';
2829 #IfNotRow2Dx2 list_options list_id race option_id creek title Creek
2830 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','creek','Creek','2050', '0',' 1193-2', 0);
2833 #IfRow2D list_options list_id race option_id creek
2834 UPDATE `list_options` SET `notes` = '1193-2' WHERE `option_id` = 'creek' AND `list_id` = 'race';
2837 #IfRow2D list_options list_id race title Creek
2838 UPDATE `list_options` SET `notes` = '1193-2' WHERE `title` = 'Creek' AND `list_id` = 'race';
2841 #IfNotRow2Dx2 list_options list_id race option_id croatan title Croatan
2842 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','croatan','Croatan','2060', '0',' 1207-0', 0);
2845 #IfRow2D list_options list_id race option_id croatan
2846 UPDATE `list_options` SET `notes` = '1207-0' WHERE `option_id` = 'croatan' AND `list_id` = 'race';
2849 #IfRow2D list_options list_id race title Croatan
2850 UPDATE `list_options` SET `notes` = '1207-0' WHERE `title` = 'Croatan' AND `list_id` = 'race';
2853 #IfNotRow2Dx2 list_options list_id race option_id crooked_creek title Crooked Creek
2854 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','crooked_creek','Crooked Creek','2070', '0',' 1912-5', 0);
2857 #IfRow2D list_options list_id race option_id crooked_creek
2858 UPDATE `list_options` SET `notes` = '1912-5' WHERE `option_id` = 'crooked_creek' AND `list_id` = 'race';
2861 #IfRow2D list_options list_id race title Crooked Creek
2862 UPDATE `list_options` SET `notes` = '1912-5' WHERE `title` = 'Crooked Creek' AND `list_id` = 'race';
2865 #IfNotRow2Dx2 list_options list_id race option_id crow title Crow
2866 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','crow','Crow','2080', '0',' 1209-6', 0);
2869 #IfRow2D list_options list_id race option_id crow
2870 UPDATE `list_options` SET `notes` = '1209-6' WHERE `option_id` = 'crow' AND `list_id` = 'race';
2873 #IfRow2D list_options list_id race title Crow
2874 UPDATE `list_options` SET `notes` = '1209-6' WHERE `title` = 'Crow' AND `list_id` = 'race';
2877 #IfNotRow2Dx2 list_options list_id race option_id crow_creek_sioux title Crow Creek Sioux
2878 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','crow_creek_sioux','Crow Creek Sioux','2090', '0',' 1613-9', 0);
2881 #IfRow2D list_options list_id race option_id crow_creek_sioux
2882 UPDATE `list_options` SET `notes` = '1613-9' WHERE `option_id` = 'crow_creek_sioux' AND `list_id` = 'race';
2885 #IfRow2D list_options list_id race title Crow Creek Sioux
2886 UPDATE `list_options` SET `notes` = '1613-9' WHERE `title` = 'Crow Creek Sioux' AND `list_id` = 'race';
2889 #IfNotRow2Dx2 list_options list_id race option_id cupeno title Cupeno
2890 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cupeno','Cupeno','2100', '0',' 1211-2', 0);
2893 #IfRow2D list_options list_id race option_id cupeno
2894 UPDATE `list_options` SET `notes` = '1211-2' WHERE `option_id` = 'cupeno' AND `list_id` = 'race';
2897 #IfRow2D list_options list_id race title Cupeno
2898 UPDATE `list_options` SET `notes` = '1211-2' WHERE `title` = 'Cupeno' AND `list_id` = 'race';
2901 #IfNotRow2Dx2 list_options list_id race option_id cuyapaipe title Cuyapaipe
2902 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','cuyapaipe','Cuyapaipe','2110', '0',' 1225-2', 0);
2905 #IfRow2D list_options list_id race option_id cuyapaipe
2906 UPDATE `list_options` SET `notes` = '1225-2' WHERE `option_id` = 'cuyapaipe' AND `list_id` = 'race';
2909 #IfRow2D list_options list_id race title Cuyapaipe
2910 UPDATE `list_options` SET `notes` = '1225-2' WHERE `title` = 'Cuyapaipe' AND `list_id` = 'race';
2913 #IfNotRow2Dx2 list_options list_id race option_id dakota_sioux title Dakota Sioux
2914 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dakota_sioux','Dakota Sioux','2120', '0',' 1614-7', 0);
2917 #IfRow2D list_options list_id race option_id dakota_sioux
2918 UPDATE `list_options` SET `notes` = '1614-7' WHERE `option_id` = 'dakota_sioux' AND `list_id` = 'race';
2921 #IfRow2D list_options list_id race title Dakota Sioux
2922 UPDATE `list_options` SET `notes` = '1614-7' WHERE `title` = 'Dakota Sioux' AND `list_id` = 'race';
2925 #IfNotRow2Dx2 list_options list_id race option_id deering title Deering
2926 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','deering','Deering','2130', '0',' 1857-2', 0);
2929 #IfRow2D list_options list_id race option_id deering
2930 UPDATE `list_options` SET `notes` = '1857-2' WHERE `option_id` = 'deering' AND `list_id` = 'race';
2933 #IfRow2D list_options list_id race title Deering
2934 UPDATE `list_options` SET `notes` = '1857-2' WHERE `title` = 'Deering' AND `list_id` = 'race';
2937 #IfNotRow2Dx2 list_options list_id race option_id delaware title Delaware
2938 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','delaware','Delaware','2140', '0',' 1214-6', 0);
2941 #IfRow2D list_options list_id race option_id delaware
2942 UPDATE `list_options` SET `notes` = '1214-6' WHERE `option_id` = 'delaware' AND `list_id` = 'race';
2945 #IfRow2D list_options list_id race title Delaware
2946 UPDATE `list_options` SET `notes` = '1214-6' WHERE `title` = 'Delaware' AND `list_id` = 'race';
2949 #IfNotRow2Dx2 list_options list_id race option_id diegueno title Diegueno
2950 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','diegueno','Diegueno','2150', '0',' 1222-9', 0);
2953 #IfRow2D list_options list_id race option_id diegueno
2954 UPDATE `list_options` SET `notes` = '1222-9' WHERE `option_id` = 'diegueno' AND `list_id` = 'race';
2957 #IfRow2D list_options list_id race title Diegueno
2958 UPDATE `list_options` SET `notes` = '1222-9' WHERE `title` = 'Diegueno' AND `list_id` = 'race';
2961 #IfNotRow2Dx2 list_options list_id race option_id digger title Digger
2962 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','digger','Digger','2160', '0',' 1057-9', 0);
2965 #IfRow2D list_options list_id race option_id digger
2966 UPDATE `list_options` SET `notes` = '1057-9' WHERE `option_id` = 'digger' AND `list_id` = 'race';
2969 #IfRow2D list_options list_id race title Digger
2970 UPDATE `list_options` SET `notes` = '1057-9' WHERE `title` = 'Digger' AND `list_id` = 'race';
2973 #IfNotRow2Dx2 list_options list_id race option_id dillingham title Dillingham
2974 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dillingham','Dillingham','2170', '0',' 1913-3', 0);
2977 #IfRow2D list_options list_id race option_id dillingham
2978 UPDATE `list_options` SET `notes` = '1913-3' WHERE `option_id` = 'dillingham' AND `list_id` = 'race';
2981 #IfRow2D list_options list_id race title Dillingham
2982 UPDATE `list_options` SET `notes` = '1913-3' WHERE `title` = 'Dillingham' AND `list_id` = 'race';
2985 #IfNotRow2Dx2 list_options list_id race option_id dominica_islander title Dominica Islander
2986 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dominica_islander','Dominica Islander','2180', '0',' 2070-1', 0);
2989 #IfRow2D list_options list_id race option_id dominica_islander
2990 UPDATE `list_options` SET `notes` = '2070-1' WHERE `option_id` = 'dominica_islander' AND `list_id` = 'race';
2993 #IfRow2D list_options list_id race title Dominica Islander
2994 UPDATE `list_options` SET `notes` = '2070-1' WHERE `title` = 'Dominica Islander' AND `list_id` = 'race';
2997 #IfNotRow2Dx2 list_options list_id race option_id dominican title Dominican
2998 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dominican','Dominican','2190', '0',' 2069-3', 0);
3001 #IfRow2D list_options list_id race option_id dominican
3002 UPDATE `list_options` SET `notes` = '2069-3' WHERE `option_id` = 'dominican' AND `list_id` = 'race';
3005 #IfRow2D list_options list_id race title Dominican
3006 UPDATE `list_options` SET `notes` = '2069-3' WHERE `title` = 'Dominican' AND `list_id` = 'race';
3009 #IfNotRow2Dx2 list_options list_id race option_id dot_lake title Dot Lake
3010 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dot_lake','Dot Lake','2200', '0',' 1758-2', 0);
3013 #IfRow2D list_options list_id race option_id dot_lake
3014 UPDATE `list_options` SET `notes` = '1758-2' WHERE `option_id` = 'dot_lake' AND `list_id` = 'race';
3017 #IfRow2D list_options list_id race title Dot Lake
3018 UPDATE `list_options` SET `notes` = '1758-2' WHERE `title` = 'Dot Lake' AND `list_id` = 'race';
3021 #IfNotRow2Dx2 list_options list_id race option_id douglas title Douglas
3022 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','douglas','Douglas','2210', '0',' 1819-2', 0);
3025 #IfRow2D list_options list_id race option_id douglas
3026 UPDATE `list_options` SET `notes` = '1819-2' WHERE `option_id` = 'douglas' AND `list_id` = 'race';
3029 #IfRow2D list_options list_id race title Douglas
3030 UPDATE `list_options` SET `notes` = '1819-2' WHERE `title` = 'Douglas' AND `list_id` = 'race';
3033 #IfNotRow2Dx2 list_options list_id race option_id doyon title Doyon
3034 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','doyon','Doyon','2220', '0',' 1759-0', 0);
3037 #IfRow2D list_options list_id race option_id doyon
3038 UPDATE `list_options` SET `notes` = '1759-0' WHERE `option_id` = 'doyon' AND `list_id` = 'race';
3041 #IfRow2D list_options list_id race title Doyon
3042 UPDATE `list_options` SET `notes` = '1759-0' WHERE `title` = 'Doyon' AND `list_id` = 'race';
3045 #IfNotRow2Dx2 list_options list_id race option_id dresslerville title Dresslerville
3046 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dresslerville','Dresslerville','2230', '0',' 1690-7', 0);
3049 #IfRow2D list_options list_id race option_id dresslerville
3050 UPDATE `list_options` SET `notes` = '1690-7' WHERE `option_id` = 'dresslerville' AND `list_id` = 'race';
3053 #IfRow2D list_options list_id race title Dresslerville
3054 UPDATE `list_options` SET `notes` = '1690-7' WHERE `title` = 'Dresslerville' AND `list_id` = 'race';
3057 #IfNotRow2Dx2 list_options list_id race option_id dry_creek title Dry Creek
3058 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','dry_creek','Dry Creek','2240', '0',' 1466-2', 0);
3061 #IfRow2D list_options list_id race option_id dry_creek
3062 UPDATE `list_options` SET `notes` = '1466-2' WHERE `option_id` = 'dry_creek' AND `list_id` = 'race';
3065 #IfRow2D list_options list_id race title Dry Creek
3066 UPDATE `list_options` SET `notes` = '1466-2' WHERE `title` = 'Dry Creek' AND `list_id` = 'race';
3069 #IfNotRow2Dx2 list_options list_id race option_id duck_valley title Duck Valley
3070 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','duck_valley','Duck Valley','2250', '0',' 1603-0', 0);
3073 #IfRow2D list_options list_id race option_id duck_valley
3074 UPDATE `list_options` SET `notes` = '1603-0' WHERE `option_id` = 'duck_valley' AND `list_id` = 'race';
3077 #IfRow2D list_options list_id race title Duck Valley
3078 UPDATE `list_options` SET `notes` = '1603-0' WHERE `title` = 'Duck Valley' AND `list_id` = 'race';
3081 #IfNotRow2Dx2 list_options list_id race option_id duckwater title Duckwater
3082 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','duckwater','Duckwater','2260', '0',' 1588-3', 0);
3085 #IfRow2D list_options list_id race option_id duckwater
3086 UPDATE `list_options` SET `notes` = '1588-3' WHERE `option_id` = 'duckwater' AND `list_id` = 'race';
3089 #IfRow2D list_options list_id race title Duckwater
3090 UPDATE `list_options` SET `notes` = '1588-3' WHERE `title` = 'Duckwater' AND `list_id` = 'race';
3093 #IfNotRow2Dx2 list_options list_id race option_id duwamish title Duwamish
3094 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','duwamish','Duwamish','2270', '0',' 1519-8', 0);
3097 #IfRow2D list_options list_id race option_id duwamish
3098 UPDATE `list_options` SET `notes` = '1519-8' WHERE `option_id` = 'duwamish' AND `list_id` = 'race';
3101 #IfRow2D list_options list_id race title Duwamish
3102 UPDATE `list_options` SET `notes` = '1519-8' WHERE `title` = 'Duwamish' AND `list_id` = 'race';
3105 #IfNotRow2Dx2 list_options list_id race option_id eagle title Eagle
3106 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eagle','Eagle','2280', '0',' 1760-8', 0);
3109 #IfRow2D list_options list_id race option_id eagle
3110 UPDATE `list_options` SET `notes` = '1760-8' WHERE `option_id` = 'eagle' AND `list_id` = 'race';
3113 #IfRow2D list_options list_id race title Eagle
3114 UPDATE `list_options` SET `notes` = '1760-8' WHERE `title` = 'Eagle' AND `list_id` = 'race';
3117 #IfNotRow2Dx2 list_options list_id race option_id eastern_cherokee title Eastern Cherokee
3118 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_cherokee','Eastern Cherokee','2290', '0',' 1092-6', 0);
3121 #IfRow2D list_options list_id race option_id eastern_cherokee
3122 UPDATE `list_options` SET `notes` = '1092-6' WHERE `option_id` = 'eastern_cherokee' AND `list_id` = 'race';
3125 #IfRow2D list_options list_id race title Eastern Cherokee
3126 UPDATE `list_options` SET `notes` = '1092-6' WHERE `title` = 'Eastern Cherokee' AND `list_id` = 'race';
3129 #IfNotRow2Dx2 list_options list_id race option_id eastern_chickahominy title Eastern Chickahominy
3130 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_chickahominy','Eastern Chickahominy','2300', '0',' 1109-8', 0);
3133 #IfRow2D list_options list_id race option_id eastern_chickahominy
3134 UPDATE `list_options` SET `notes` = '1109-8' WHERE `option_id` = 'eastern_chickahominy' AND `list_id` = 'race';
3137 #IfRow2D list_options list_id race title Eastern Chickahominy
3138 UPDATE `list_options` SET `notes` = '1109-8' WHERE `title` = 'Eastern Chickahominy' AND `list_id` = 'race';
3141 #IfNotRow2Dx2 list_options list_id race option_id eastern_creek title Eastern Creek
3142 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_creek','Eastern Creek','2310', '0',' 1196-5', 0);
3145 #IfRow2D list_options list_id race option_id eastern_creek
3146 UPDATE `list_options` SET `notes` = '1196-5' WHERE `option_id` = 'eastern_creek' AND `list_id` = 'race';
3149 #IfRow2D list_options list_id race title Eastern Creek
3150 UPDATE `list_options` SET `notes` = '1196-5' WHERE `title` = 'Eastern Creek' AND `list_id` = 'race';
3153 #IfNotRow2Dx2 list_options list_id race option_id eastern_delaware title Eastern Delaware
3154 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_delaware','Eastern Delaware','2320', '0',' 1215-3', 0);
3157 #IfRow2D list_options list_id race option_id eastern_delaware
3158 UPDATE `list_options` SET `notes` = '1215-3' WHERE `option_id` = 'eastern_delaware' AND `list_id` = 'race';
3161 #IfRow2D list_options list_id race title Eastern Delaware
3162 UPDATE `list_options` SET `notes` = '1215-3' WHERE `title` = 'Eastern Delaware' AND `list_id` = 'race';
3165 #IfNotRow2Dx2 list_options list_id race option_id eastern_muscogee title Eastern Muscogee
3166 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_muscogee','Eastern Muscogee','2330', '0',' 1197-3', 0);
3169 #IfRow2D list_options list_id race option_id eastern_muscogee
3170 UPDATE `list_options` SET `notes` = '1197-3' WHERE `option_id` = 'eastern_muscogee' AND `list_id` = 'race';
3173 #IfRow2D list_options list_id race title Eastern Muscogee
3174 UPDATE `list_options` SET `notes` = '1197-3' WHERE `title` = 'Eastern Muscogee' AND `list_id` = 'race';
3177 #IfNotRow2Dx2 list_options list_id race option_id eastern_pomo title Eastern Pomo
3178 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_pomo','Eastern Pomo','2340', '0',' 1467-0', 0);
3181 #IfRow2D list_options list_id race option_id eastern_pomo
3182 UPDATE `list_options` SET `notes` = '1467-0' WHERE `option_id` = 'eastern_pomo' AND `list_id` = 'race';
3185 #IfRow2D list_options list_id race title Eastern Pomo
3186 UPDATE `list_options` SET `notes` = '1467-0' WHERE `title` = 'Eastern Pomo' AND `list_id` = 'race';
3189 #IfNotRow2Dx2 list_options list_id race option_id eastern_shawnee title Eastern Shawnee
3190 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_shawnee','Eastern Shawnee','2350', '0',' 1580-0', 0);
3193 #IfRow2D list_options list_id race option_id eastern_shawnee
3194 UPDATE `list_options` SET `notes` = '1580-0' WHERE `option_id` = 'eastern_shawnee' AND `list_id` = 'race';
3197 #IfRow2D list_options list_id race title Eastern Shawnee
3198 UPDATE `list_options` SET `notes` = '1580-0' WHERE `title` = 'Eastern Shawnee' AND `list_id` = 'race';
3201 #IfNotRow2Dx2 list_options list_id race option_id eastern_tribes title Eastern Tribes
3202 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eastern_tribes','Eastern Tribes','2360', '0',' 1233-6', 0);
3205 #IfRow2D list_options list_id race option_id eastern_tribes
3206 UPDATE `list_options` SET `notes` = '1233-6' WHERE `option_id` = 'eastern_tribes' AND `list_id` = 'race';
3209 #IfRow2D list_options list_id race title Eastern Tribes
3210 UPDATE `list_options` SET `notes` = '1233-6' WHERE `title` = 'Eastern Tribes' AND `list_id` = 'race';
3213 #IfNotRow2Dx2 list_options list_id race option_id echota_cherokee title Echota Cherokee
3214 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','echota_cherokee','Echota Cherokee','2370', '0',' 1093-4', 0);
3217 #IfRow2D list_options list_id race option_id echota_cherokee
3218 UPDATE `list_options` SET `notes` = '1093-4' WHERE `option_id` = 'echota_cherokee' AND `list_id` = 'race';
3221 #IfRow2D list_options list_id race title Echota Cherokee
3222 UPDATE `list_options` SET `notes` = '1093-4' WHERE `title` = 'Echota Cherokee' AND `list_id` = 'race';
3225 #IfNotRow2Dx2 list_options list_id race option_id eek title Eek
3226 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eek','Eek','2380', '0',' 1914-1', 0);
3229 #IfRow2D list_options list_id race option_id eek
3230 UPDATE `list_options` SET `notes` = '1914-1' WHERE `option_id` = 'eek' AND `list_id` = 'race';
3233 #IfRow2D list_options list_id race title Eek
3234 UPDATE `list_options` SET `notes` = '1914-1' WHERE `title` = 'Eek' AND `list_id` = 'race';
3237 #IfNotRow2Dx2 list_options list_id race option_id egegik title Egegik
3238 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','egegik','Egegik','2390', '0',' 1975-2', 0);
3241 #IfRow2D list_options list_id race option_id egegik
3242 UPDATE `list_options` SET `notes` = '1975-2' WHERE `option_id` = 'egegik' AND `list_id` = 'race';
3245 #IfRow2D list_options list_id race title Egegik
3246 UPDATE `list_options` SET `notes` = '1975-2' WHERE `title` = 'Egegik' AND `list_id` = 'race';
3249 #IfNotRow2Dx2 list_options list_id race option_id egyptian title Egyptian
3250 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','egyptian','Egyptian','2400', '0',' 2120-4', 0);
3253 #IfRow2D list_options list_id race option_id egyptian
3254 UPDATE `list_options` SET `notes` = '2120-4' WHERE `option_id` = 'egyptian' AND `list_id` = 'race';
3257 #IfRow2D list_options list_id race title Egyptian
3258 UPDATE `list_options` SET `notes` = '2120-4' WHERE `title` = 'Egyptian' AND `list_id` = 'race';
3261 #IfNotRow2Dx2 list_options list_id race option_id eklutna title Eklutna
3262 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eklutna','Eklutna','2410', '0',' 1761-6', 0);
3265 #IfRow2D list_options list_id race option_id eklutna
3266 UPDATE `list_options` SET `notes` = '1761-6' WHERE `option_id` = 'eklutna' AND `list_id` = 'race';
3269 #IfRow2D list_options list_id race title Eklutna
3270 UPDATE `list_options` SET `notes` = '1761-6' WHERE `title` = 'Eklutna' AND `list_id` = 'race';
3273 #IfNotRow2Dx2 list_options list_id race option_id ekuk title Ekuk
3274 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ekuk','Ekuk','2420', '0',' 1915-8', 0);
3277 #IfRow2D list_options list_id race option_id ekuk
3278 UPDATE `list_options` SET `notes` = '1915-8' WHERE `option_id` = 'ekuk' AND `list_id` = 'race';
3281 #IfRow2D list_options list_id race title Ekuk
3282 UPDATE `list_options` SET `notes` = '1915-8' WHERE `title` = 'Ekuk' AND `list_id` = 'race';
3285 #IfNotRow2Dx2 list_options list_id race option_id ekwok title Ekwok
3286 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ekwok','Ekwok','2430', '0',' 1916-6', 0);
3289 #IfRow2D list_options list_id race option_id ekwok
3290 UPDATE `list_options` SET `notes` = '1916-6' WHERE `option_id` = 'ekwok' AND `list_id` = 'race';
3293 #IfRow2D list_options list_id race title Ekwok
3294 UPDATE `list_options` SET `notes` = '1916-6' WHERE `title` = 'Ekwok' AND `list_id` = 'race';
3297 #IfNotRow2Dx2 list_options list_id race option_id elim title Elim
3298 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','elim','Elim','2440', '0',' 1858-0', 0);
3301 #IfRow2D list_options list_id race option_id elim
3302 UPDATE `list_options` SET `notes` = '1858-0' WHERE `option_id` = 'elim' AND `list_id` = 'race';
3305 #IfRow2D list_options list_id race title Elim
3306 UPDATE `list_options` SET `notes` = '1858-0' WHERE `title` = 'Elim' AND `list_id` = 'race';
3309 #IfNotRow2Dx2 list_options list_id race option_id elko title Elko
3310 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','elko','Elko','2450', '0',' 1589-1', 0);
3313 #IfRow2D list_options list_id race option_id elko
3314 UPDATE `list_options` SET `notes` = '1589-1' WHERE `option_id` = 'elko' AND `list_id` = 'race';
3317 #IfRow2D list_options list_id race title Elko
3318 UPDATE `list_options` SET `notes` = '1589-1' WHERE `title` = 'Elko' AND `list_id` = 'race';
3321 #IfNotRow2Dx2 list_options list_id race option_id ely title Ely
3322 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ely','Ely','2460', '0',' 1590-9', 0);
3325 #IfRow2D list_options list_id race option_id ely
3326 UPDATE `list_options` SET `notes` = '1590-9' WHERE `option_id` = 'ely' AND `list_id` = 'race';
3329 #IfRow2D list_options list_id race title Ely
3330 UPDATE `list_options` SET `notes` = '1590-9' WHERE `title` = 'Ely' AND `list_id` = 'race';
3333 #IfNotRow2Dx2 list_options list_id race option_id emmonak title Emmonak
3334 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','emmonak','Emmonak','2470', '0',' 1917-4', 0);
3337 #IfRow2D list_options list_id race option_id emmonak
3338 UPDATE `list_options` SET `notes` = '1917-4' WHERE `option_id` = 'emmonak' AND `list_id` = 'race';
3341 #IfRow2D list_options list_id race title Emmonak
3342 UPDATE `list_options` SET `notes` = '1917-4' WHERE `title` = 'Emmonak' AND `list_id` = 'race';
3345 #IfNotRow2Dx2 list_options list_id race option_id english title English
3346 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','english','English','2480', '0',' 2110-5', 0);
3349 #IfRow2D list_options list_id race option_id english
3350 UPDATE `list_options` SET `notes` = '2110-5' WHERE `option_id` = 'english' AND `list_id` = 'race';
3353 #IfRow2D list_options list_id race title English
3354 UPDATE `list_options` SET `notes` = '2110-5' WHERE `title` = 'English' AND `list_id` = 'race';
3357 #IfNotRow2Dx2 list_options list_id race option_id english_bay title English Bay
3358 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','english_bay','English Bay','2490', '0',' 1987-7', 0);
3361 #IfRow2D list_options list_id race option_id english_bay
3362 UPDATE `list_options` SET `notes` = '1987-7' WHERE `option_id` = 'english_bay' AND `list_id` = 'race';
3365 #IfRow2D list_options list_id race title English Bay
3366 UPDATE `list_options` SET `notes` = '1987-7' WHERE `title` = 'English Bay' AND `list_id` = 'race';
3369 #IfNotRow2Dx2 list_options list_id race option_id eskimo title Eskimo
3370 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eskimo','Eskimo','2500', '0',' 1840-8', 0);
3373 #IfRow2D list_options list_id race option_id eskimo
3374 UPDATE `list_options` SET `notes` = '1840-8' WHERE `option_id` = 'eskimo' AND `list_id` = 'race';
3377 #IfRow2D list_options list_id race title Eskimo
3378 UPDATE `list_options` SET `notes` = '1840-8' WHERE `title` = 'Eskimo' AND `list_id` = 'race';
3381 #IfNotRow2Dx2 list_options list_id race option_id esselen title Esselen
3382 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','esselen','Esselen','2510', '0',' 1250-0', 0);
3385 #IfRow2D list_options list_id race option_id esselen
3386 UPDATE `list_options` SET `notes` = '1250-0' WHERE `option_id` = 'esselen' AND `list_id` = 'race';
3389 #IfRow2D list_options list_id race title Esselen
3390 UPDATE `list_options` SET `notes` = '1250-0' WHERE `title` = 'Esselen' AND `list_id` = 'race';
3393 #IfNotRow2Dx2 list_options list_id race option_id ethiopian title Ethiopian
3394 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ethiopian','Ethiopian','2520', '0',' 2062-8', 0);
3397 #IfRow2D list_options list_id race option_id ethiopian
3398 UPDATE `list_options` SET `notes` = '2062-8' WHERE `option_id` = 'ethiopian' AND `list_id` = 'race';
3401 #IfRow2D list_options list_id race title Ethiopian
3402 UPDATE `list_options` SET `notes` = '2062-8' WHERE `title` = 'Ethiopian' AND `list_id` = 'race';
3405 #IfNotRow2Dx2 list_options list_id race option_id etowah_cherokee title Etowah Cherokee
3406 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','etowah_cherokee','Etowah Cherokee','2530', '0',' 1094-2', 0);
3409 #IfRow2D list_options list_id race option_id etowah_cherokee
3410 UPDATE `list_options` SET `notes` = '1094-2' WHERE `option_id` = 'etowah_cherokee' AND `list_id` = 'race';
3413 #IfRow2D list_options list_id race title Etowah Cherokee
3414 UPDATE `list_options` SET `notes` = '1094-2' WHERE `title` = 'Etowah Cherokee' AND `list_id` = 'race';
3417 #IfNotRow2Dx2 list_options list_id race option_id european title European
3418 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','european','European','2540', '0',' 2108-9', 0);
3421 #IfRow2D list_options list_id race option_id european
3422 UPDATE `list_options` SET `notes` = '2108-9' WHERE `option_id` = 'european' AND `list_id` = 'race';
3425 #IfRow2D list_options list_id race title European
3426 UPDATE `list_options` SET `notes` = '2108-9' WHERE `title` = 'European' AND `list_id` = 'race';
3429 #IfNotRow2Dx2 list_options list_id race option_id evansville title Evansville
3430 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','evansville','Evansville','2550', '0',' 1762-4', 0);
3433 #IfRow2D list_options list_id race option_id evansville
3434 UPDATE `list_options` SET `notes` = '1762-4' WHERE `option_id` = 'evansville' AND `list_id` = 'race';
3437 #IfRow2D list_options list_id race title Evansville
3438 UPDATE `list_options` SET `notes` = '1762-4' WHERE `title` = 'Evansville' AND `list_id` = 'race';
3441 #IfNotRow2Dx2 list_options list_id race option_id eyak title Eyak
3442 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','eyak','Eyak','2560', '0',' 1990-1', 0);
3445 #IfRow2D list_options list_id race option_id eyak
3446 UPDATE `list_options` SET `notes` = '1990-1' WHERE `option_id` = 'eyak' AND `list_id` = 'race';
3449 #IfRow2D list_options list_id race title Eyak
3450 UPDATE `list_options` SET `notes` = '1990-1' WHERE `title` = 'Eyak' AND `list_id` = 'race';
3453 #IfNotRow2Dx2 list_options list_id race option_id fallon title Fallon
3454 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fallon','Fallon','2570', '0',' 1604-8', 0);
3457 #IfRow2D list_options list_id race option_id fallon
3458 UPDATE `list_options` SET `notes` = '1604-8' WHERE `option_id` = 'fallon' AND `list_id` = 'race';
3461 #IfRow2D list_options list_id race title Fallon
3462 UPDATE `list_options` SET `notes` = '1604-8' WHERE `title` = 'Fallon' AND `list_id` = 'race';
3465 #IfNotRow2Dx2 list_options list_id race option_id false_pass title False Pass
3466 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','false_pass','False Pass','2580', '0',' 2015-6', 0);
3469 #IfRow2D list_options list_id race option_id false_pass
3470 UPDATE `list_options` SET `notes` = '2015-6' WHERE `option_id` = 'false_pass' AND `list_id` = 'race';
3473 #IfRow2D list_options list_id race title False Pass
3474 UPDATE `list_options` SET `notes` = '2015-6' WHERE `title` = 'False Pass' AND `list_id` = 'race';
3477 #IfNotRow2Dx2 list_options list_id race option_id fijian title Fijian
3478 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fijian','Fijian','2590', '0',' 2101-4', 0);
3481 #IfRow2D list_options list_id race option_id fijian
3482 UPDATE `list_options` SET `notes` = '2101-4' WHERE `option_id` = 'fijian' AND `list_id` = 'race';
3485 #IfRow2D list_options list_id race title Fijian
3486 UPDATE `list_options` SET `notes` = '2101-4' WHERE `title` = 'Fijian' AND `list_id` = 'race';
3489 #IfNotRow2Dx2 list_options list_id race option_id filipino title Filipino
3490 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','filipino','Filipino','2600', '0',' 2036-2', 0);
3493 #IfRow2D list_options list_id race option_id filipino
3494 UPDATE `list_options` SET `notes` = '2036-2' WHERE `option_id` = 'filipino' AND `list_id` = 'race';
3497 #IfRow2D list_options list_id race title Filipino
3498 UPDATE `list_options` SET `notes` = '2036-2' WHERE `title` = 'Filipino' AND `list_id` = 'race';
3501 #IfNotRow2Dx2 list_options list_id race option_id flandreau_santee title Flandreau Santee
3502 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','flandreau_santee','Flandreau Santee','2610', '0',' 1615-4', 0);
3505 #IfRow2D list_options list_id race option_id flandreau_santee
3506 UPDATE `list_options` SET `notes` = '1615-4' WHERE `option_id` = 'flandreau_santee' AND `list_id` = 'race';
3509 #IfRow2D list_options list_id race title Flandreau Santee
3510 UPDATE `list_options` SET `notes` = '1615-4' WHERE `title` = 'Flandreau Santee' AND `list_id` = 'race';
3513 #IfNotRow2Dx2 list_options list_id race option_id florida_seminole title Florida Seminole
3514 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','florida_seminole','Florida Seminole','2620', '0',' 1569-3', 0);
3517 #IfRow2D list_options list_id race option_id florida_seminole
3518 UPDATE `list_options` SET `notes` = '1569-3' WHERE `option_id` = 'florida_seminole' AND `list_id` = 'race';
3521 #IfRow2D list_options list_id race title Florida Seminole
3522 UPDATE `list_options` SET `notes` = '1569-3' WHERE `title` = 'Florida Seminole' AND `list_id` = 'race';
3525 #IfNotRow2Dx2 list_options list_id race option_id fond_du_lac title Fond du Lac
3526 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fond_du_lac','Fond du Lac','2630', '0',' 1128-8', 0);
3529 #IfRow2D list_options list_id race option_id fond_du_lac
3530 UPDATE `list_options` SET `notes` = '1128-8' WHERE `option_id` = 'fond_du_lac' AND `list_id` = 'race';
3533 #IfRow2D list_options list_id race title Fond du Lac
3534 UPDATE `list_options` SET `notes` = '1128-8' WHERE `title` = 'Fond du Lac' AND `list_id` = 'race';
3537 #IfNotRow2Dx2 list_options list_id race option_id forest_county title Forest County
3538 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','forest_county','Forest County','2640', '0',' 1480-3', 0);
3541 #IfRow2D list_options list_id race option_id forest_county
3542 UPDATE `list_options` SET `notes` = '1480-3' WHERE `option_id` = 'forest_county' AND `list_id` = 'race';
3545 #IfRow2D list_options list_id race title Forest County
3546 UPDATE `list_options` SET `notes` = '1480-3' WHERE `title` = 'Forest County' AND `list_id` = 'race';
3549 #IfNotRow2Dx2 list_options list_id race option_id fort_belknap title Fort Belknap
3550 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_belknap','Fort Belknap','2650', '0',' 1252-6', 0);
3553 #IfRow2D list_options list_id race option_id fort_belknap
3554 UPDATE `list_options` SET `notes` = '1252-6' WHERE `option_id` = 'fort_belknap' AND `list_id` = 'race';
3557 #IfRow2D list_options list_id race title Fort Belknap
3558 UPDATE `list_options` SET `notes` = '1252-6' WHERE `title` = 'Fort Belknap' AND `list_id` = 'race';
3561 #IfNotRow2Dx2 list_options list_id race option_id fort_berthold title Fort Berthold
3562 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_berthold','Fort Berthold','2660', '0',' 1254-2', 0);
3565 #IfRow2D list_options list_id race option_id fort_berthold
3566 UPDATE `list_options` SET `notes` = '1254-2' WHERE `option_id` = 'fort_berthold' AND `list_id` = 'race';
3569 #IfRow2D list_options list_id race title Fort Berthold
3570 UPDATE `list_options` SET `notes` = '1254-2' WHERE `title` = 'Fort Berthold' AND `list_id` = 'race';
3573 #IfNotRow2Dx2 list_options list_id race option_id fort_bidwell title Fort Bidwell
3574 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_bidwell','Fort Bidwell','2670', '0',' 1421-7', 0);
3577 #IfRow2D list_options list_id race option_id fort_bidwell
3578 UPDATE `list_options` SET `notes` = '1421-7' WHERE `option_id` = 'fort_bidwell' AND `list_id` = 'race';
3581 #IfRow2D list_options list_id race title Fort Bidwell
3582 UPDATE `list_options` SET `notes` = '1421-7' WHERE `title` = 'Fort Bidwell' AND `list_id` = 'race';
3585 #IfNotRow2Dx2 list_options list_id race option_id fort_hall title Fort Hall
3586 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_hall','Fort Hall','2680', '0',' 1258-3', 0);
3589 #IfRow2D list_options list_id race option_id fort_hall
3590 UPDATE `list_options` SET `notes` = '1258-3' WHERE `option_id` = 'fort_hall' AND `list_id` = 'race';
3593 #IfRow2D list_options list_id race title Fort Hall
3594 UPDATE `list_options` SET `notes` = '1258-3' WHERE `title` = 'Fort Hall' AND `list_id` = 'race';
3597 #IfNotRow2Dx2 list_options list_id race option_id fort_independence title Fort Independence
3598 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_independence','Fort Independence','2690', '0',' 1422-5', 0);
3601 #IfRow2D list_options list_id race option_id fort_independence
3602 UPDATE `list_options` SET `notes` = '1422-5' WHERE `option_id` = 'fort_independence' AND `list_id` = 'race';
3605 #IfRow2D list_options list_id race title Fort Independence
3606 UPDATE `list_options` SET `notes` = '1422-5' WHERE `title` = 'Fort Independence' AND `list_id` = 'race';
3609 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdermitt title Fort McDermitt
3610 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_mcdermitt','Fort McDermitt','2700', '0',' 1605-5', 0);
3613 #IfRow2D list_options list_id race option_id fort_mcdermitt
3614 UPDATE `list_options` SET `notes` = '1605-5' WHERE `option_id` = 'fort_mcdermitt' AND `list_id` = 'race';
3617 #IfRow2D list_options list_id race title Fort McDermitt
3618 UPDATE `list_options` SET `notes` = '1605-5' WHERE `title` = 'Fort McDermitt' AND `list_id` = 'race';
3621 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdowell title Fort Mcdowell
3622 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_mcdowell','Fort Mcdowell','2710', '0',' 1256-7', 0);
3625 #IfRow2D list_options list_id race option_id fort_mcdowell
3626 UPDATE `list_options` SET `notes` = '1256-7' WHERE `option_id` = 'fort_mcdowell' AND `list_id` = 'race';
3629 #IfRow2D list_options list_id race title Fort Mcdowell
3630 UPDATE `list_options` SET `notes` = '1256-7' WHERE `title` = 'Fort Mcdowell' AND `list_id` = 'race';
3633 #IfNotRow2Dx2 list_options list_id race option_id fort_peck title Fort Peck
3634 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_peck','Fort Peck','2720', '0',' 1616-2', 0);
3637 #IfRow2D list_options list_id race option_id fort_peck
3638 UPDATE `list_options` SET `notes` = '1616-2' WHERE `option_id` = 'fort_peck' AND `list_id` = 'race';
3641 #IfRow2D list_options list_id race title Fort Peck
3642 UPDATE `list_options` SET `notes` = '1616-2' WHERE `title` = 'Fort Peck' AND `list_id` = 'race';
3645 #IfNotRow2Dx2 list_options list_id race option_id fort_peck_assiniboine_sioux title Fort Peck Assiniboine Sioux
3646 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_peck_assiniboine_sioux','Fort Peck Assiniboine Sioux','2730', '0',' 1031-4', 0);
3649 #IfRow2D list_options list_id race option_id fort_peck_assiniboine_sioux
3650 UPDATE `list_options` SET `notes` = '1031-4' WHERE `option_id` = 'fort_peck_assiniboine_sioux' AND `list_id` = 'race';
3653 #IfRow2D list_options list_id race title Fort Peck Assiniboine Sioux
3654 UPDATE `list_options` SET `notes` = '1031-4' WHERE `title` = 'Fort Peck Assiniboine Sioux' AND `list_id` = 'race';
3657 #IfNotRow2Dx2 list_options list_id race option_id fort_sill_apache title Fort Sill Apache
3658 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_sill_apache','Fort Sill Apache','2740', '0',' 1012-4', 0);
3661 #IfRow2D list_options list_id race option_id fort_sill_apache
3662 UPDATE `list_options` SET `notes` = '1012-4' WHERE `option_id` = 'fort_sill_apache' AND `list_id` = 'race';
3665 #IfRow2D list_options list_id race title Fort Sill Apache
3666 UPDATE `list_options` SET `notes` = '1012-4' WHERE `title` = 'Fort Sill Apache' AND `list_id` = 'race';
3669 #IfNotRow2Dx2 list_options list_id race option_id fort_yukon title Fort Yukon
3670 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','fort_yukon','Fort Yukon','2750', '0',' 1763-2', 0);
3673 #IfRow2D list_options list_id race option_id fort_yukon
3674 UPDATE `list_options` SET `notes` = '1763-2' WHERE `option_id` = 'fort_yukon' AND `list_id` = 'race';
3677 #IfRow2D list_options list_id race title Fort Yukon
3678 UPDATE `list_options` SET `notes` = '1763-2' WHERE `title` = 'Fort Yukon' AND `list_id` = 'race';
3681 #IfNotRow2Dx2 list_options list_id race option_id french title French
3682 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','french','French','2760', '0',' 2111-3', 0);
3685 #IfRow2D list_options list_id race option_id french
3686 UPDATE `list_options` SET `notes` = '2111-3' WHERE `option_id` = 'french' AND `list_id` = 'race';
3689 #IfRow2D list_options list_id race title French
3690 UPDATE `list_options` SET `notes` = '2111-3' WHERE `title` = 'French' AND `list_id` = 'race';
3693 #IfNotRow2Dx2 list_options list_id race option_id french_american_indian title French American Indian
3694 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','french_american_indian','French American Indian','2770', '0',' 1071-0', 0);
3697 #IfRow2D list_options list_id race option_id french_american_indian
3698 UPDATE `list_options` SET `notes` = '1071-0' WHERE `option_id` = 'french_american_indian' AND `list_id` = 'race';
3701 #IfRow2D list_options list_id race title French American Indian
3702 UPDATE `list_options` SET `notes` = '1071-0' WHERE `title` = 'French American Indian' AND `list_id` = 'race';
3705 #IfNotRow2Dx2 list_options list_id race option_id gabrieleno title Gabrieleno
3706 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gabrieleno','Gabrieleno','2780', '0',' 1260-9', 0);
3709 #IfRow2D list_options list_id race option_id gabrieleno
3710 UPDATE `list_options` SET `notes` = '1260-9' WHERE `option_id` = 'gabrieleno' AND `list_id` = 'race';
3713 #IfRow2D list_options list_id race title Gabrieleno
3714 UPDATE `list_options` SET `notes` = '1260-9' WHERE `title` = 'Gabrieleno' AND `list_id` = 'race';
3717 #IfNotRow2Dx2 list_options list_id race option_id gakona title Gakona
3718 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gakona','Gakona','2790', '0',' 1764-0', 0);
3721 #IfRow2D list_options list_id race option_id gakona
3722 UPDATE `list_options` SET `notes` = '1764-0' WHERE `option_id` = 'gakona' AND `list_id` = 'race';
3725 #IfRow2D list_options list_id race title Gakona
3726 UPDATE `list_options` SET `notes` = '1764-0' WHERE `title` = 'Gakona' AND `list_id` = 'race';
3729 #IfNotRow2Dx2 list_options list_id race option_id galena title Galena
3730 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','galena','Galena','2800', '0',' 1765-7', 0);
3733 #IfRow2D list_options list_id race option_id galena
3734 UPDATE `list_options` SET `notes` = '1765-7' WHERE `option_id` = 'galena' AND `list_id` = 'race';
3737 #IfRow2D list_options list_id race title Galena
3738 UPDATE `list_options` SET `notes` = '1765-7' WHERE `title` = 'Galena' AND `list_id` = 'race';
3741 #IfNotRow2Dx2 list_options list_id race option_id gambell title Gambell
3742 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gambell','Gambell','2810', '0',' 1892-9', 0);
3745 #IfRow2D list_options list_id race option_id gambell
3746 UPDATE `list_options` SET `notes` = '1892-9' WHERE `option_id` = 'gambell' AND `list_id` = 'race';
3749 #IfRow2D list_options list_id race title Gambell
3750 UPDATE `list_options` SET `notes` = '1892-9' WHERE `title` = 'Gambell' AND `list_id` = 'race';
3753 #IfNotRow2Dx2 list_options list_id race option_id gay_head_wampanoag title Gay Head Wampanoag
3754 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gay_head_wampanoag','Gay Head Wampanoag','2820', '0',' 1680-8', 0);
3757 #IfRow2D list_options list_id race option_id gay_head_wampanoag
3758 UPDATE `list_options` SET `notes` = '1680-8' WHERE `option_id` = 'gay_head_wampanoag' AND `list_id` = 'race';
3761 #IfRow2D list_options list_id race title Gay Head Wampanoag
3762 UPDATE `list_options` SET `notes` = '1680-8' WHERE `title` = 'Gay Head Wampanoag' AND `list_id` = 'race';
3765 #IfNotRow2Dx2 list_options list_id race option_id georgetown_eastern_tribes title Georgetown (Eastern Tribes)
3766 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','georgetown_eastern_tribes','Georgetown (Eastern Tribes)','2830', '0',' 1236-9', 0);
3769 #IfRow2D list_options list_id race option_id georgetown_eastern_tribes
3770 UPDATE `list_options` SET `notes` = '1236-9' WHERE `option_id` = 'georgetown_eastern_tribes' AND `list_id` = 'race';
3773 #IfRow2D list_options list_id race title Georgetown (Eastern Tribes)
3774 UPDATE `list_options` SET `notes` = '1236-9' WHERE `title` = 'Georgetown (Eastern Tribes)' AND `list_id` = 'race';
3777 #IfNotRow2Dx2 list_options list_id race option_id georgetown_yupik-eskimo title Georgetown (Yupik-Eskimo)
3778 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','georgetown_yupik-eskimo','Georgetown (Yupik-Eskimo)','2840', '0',' 1962-0', 0);
3781 #IfRow2D list_options list_id race option_id georgetown_yupik-eskimo
3782 UPDATE `list_options` SET `notes` = '1962-0' WHERE `option_id` = 'georgetown_yupik-eskimo' AND `list_id` = 'race';
3785 #IfRow2D list_options list_id race title Georgetown (Yupik-Eskimo)
3786 UPDATE `list_options` SET `notes` = '1962-0' WHERE `title` = 'Georgetown (Yupik-Eskimo)' AND `list_id` = 'race';
3789 #IfNotRow2Dx2 list_options list_id race option_id german title German
3790 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','german','German','2850', '0',' 2112-1', 0);
3793 #IfRow2D list_options list_id race option_id german
3794 UPDATE `list_options` SET `notes` = '2112-1' WHERE `option_id` = 'german' AND `list_id` = 'race';
3797 #IfRow2D list_options list_id race title German
3798 UPDATE `list_options` SET `notes` = '2112-1' WHERE `title` = 'German' AND `list_id` = 'race';
3801 #IfNotRow2Dx2 list_options list_id race option_id gila_bend title Gila Bend
3802 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gila_bend','Gila Bend','2860', '0',' 1655-0', 0);
3805 #IfRow2D list_options list_id race option_id gila_bend
3806 UPDATE `list_options` SET `notes` = '1655-0' WHERE `option_id` = 'gila_bend' AND `list_id` = 'race';
3809 #IfRow2D list_options list_id race title Gila Bend
3810 UPDATE `list_options` SET `notes` = '1655-0' WHERE `title` = 'Gila Bend' AND `list_id` = 'race';
3813 #IfNotRow2Dx2 list_options list_id race option_id gila_river_pima-maricopa title Gila River Pima-Maricopa
3814 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gila_river_pima-maricopa','Gila River Pima-Maricopa','2870', '0',' 1457-1', 0);
3817 #IfRow2D list_options list_id race option_id gila_river_pima-maricopa
3818 UPDATE `list_options` SET `notes` = '1457-1' WHERE `option_id` = 'gila_river_pima-maricopa' AND `list_id` = 'race';
3821 #IfRow2D list_options list_id race title Gila River Pima-Maricopa
3822 UPDATE `list_options` SET `notes` = '1457-1' WHERE `title` = 'Gila River Pima-Maricopa' AND `list_id` = 'race';
3825 #IfNotRow2Dx2 list_options list_id race option_id golovin title Golovin
3826 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','golovin','Golovin','2880', '0',' 1859-8', 0);
3829 #IfRow2D list_options list_id race option_id golovin
3830 UPDATE `list_options` SET `notes` = '1859-8' WHERE `option_id` = 'golovin' AND `list_id` = 'race';
3833 #IfRow2D list_options list_id race title Golovin
3834 UPDATE `list_options` SET `notes` = '1859-8' WHERE `title` = 'Golovin' AND `list_id` = 'race';
3837 #IfNotRow2Dx2 list_options list_id race option_id goodnews_bay title Goodnews Bay
3838 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','goodnews_bay','Goodnews Bay','2890', '0',' 1918-2', 0);
3841 #IfRow2D list_options list_id race option_id goodnews_bay
3842 UPDATE `list_options` SET `notes` = '1918-2' WHERE `option_id` = 'goodnews_bay' AND `list_id` = 'race';
3845 #IfRow2D list_options list_id race title Goodnews Bay
3846 UPDATE `list_options` SET `notes` = '1918-2' WHERE `title` = 'Goodnews Bay' AND `list_id` = 'race';
3849 #IfNotRow2Dx2 list_options list_id race option_id goshute title Goshute
3850 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','goshute','Goshute','2900', '0',' 1591-7', 0);
3853 #IfRow2D list_options list_id race option_id goshute
3854 UPDATE `list_options` SET `notes` = '1591-7' WHERE `option_id` = 'goshute' AND `list_id` = 'race';
3857 #IfRow2D list_options list_id race title Goshute
3858 UPDATE `list_options` SET `notes` = '1591-7' WHERE `title` = 'Goshute' AND `list_id` = 'race';
3861 #IfNotRow2Dx2 list_options list_id race option_id grand_portage title Grand Portage
3862 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','grand_portage','Grand Portage','2910', '0',' 1129-6', 0);
3865 #IfRow2D list_options list_id race option_id grand_portage
3866 UPDATE `list_options` SET `notes` = '1129-6' WHERE `option_id` = 'grand_portage' AND `list_id` = 'race';
3869 #IfRow2D list_options list_id race title Grand Portage
3870 UPDATE `list_options` SET `notes` = '1129-6' WHERE `title` = 'Grand Portage' AND `list_id` = 'race';
3873 #IfNotRow2Dx2 list_options list_id race option_id grand_ronde title Grand Ronde
3874 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','grand_ronde','Grand Ronde','2920', '0',' 1262-5', 0);
3877 #IfRow2D list_options list_id race option_id grand_ronde
3878 UPDATE `list_options` SET `notes` = '1262-5' WHERE `option_id` = 'grand_ronde' AND `list_id` = 'race';
3881 #IfRow2D list_options list_id race title Grand Ronde
3882 UPDATE `list_options` SET `notes` = '1262-5' WHERE `title` = 'Grand Ronde' AND `list_id` = 'race';
3885 #IfNotRow2Dx2 list_options list_id race option_id grand_traverse_band title Grand Traverse Band of Ottawa/Chippewa
3886 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','grand_traverse_band','Grand Traverse Band of Ottawa/Chippewa','2930', '0',' 1130-4', 0);
3889 #IfRow2D list_options list_id race option_id grand_traverse_band
3890 UPDATE `list_options` SET `notes` = '1130-4' WHERE `option_id` = 'grand_traverse_band' AND `list_id` = 'race';
3893 #IfRow2D list_options list_id race title Grand Traverse Band of Ottawa/Chippewa
3894 UPDATE `list_options` SET `notes` = '1130-4' WHERE `title` = 'Grand Traverse Band of Ottawa/Chippewa' AND `list_id` = 'race';
3897 #IfNotRow2Dx2 list_options list_id race option_id grayling title Grayling
3898 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','grayling','Grayling','2940', '0',' 1766-5', 0);
3901 #IfRow2D list_options list_id race option_id grayling
3902 UPDATE `list_options` SET `notes` = '1766-5' WHERE `option_id` = 'grayling' AND `list_id` = 'race';
3905 #IfRow2D list_options list_id race title Grayling
3906 UPDATE `list_options` SET `notes` = '1766-5' WHERE `title` = 'Grayling' AND `list_id` = 'race';
3909 #IfNotRow2Dx2 list_options list_id race option_id greenland_eskimo title Greenland Eskimo
3910 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','greenland_eskimo','Greenland Eskimo','2950', '0',' 1842-4', 0);
3913 #IfRow2D list_options list_id race option_id greenland_eskimo
3914 UPDATE `list_options` SET `notes` = '1842-4' WHERE `option_id` = 'greenland_eskimo' AND `list_id` = 'race';
3917 #IfRow2D list_options list_id race title Greenland Eskimo
3918 UPDATE `list_options` SET `notes` = '1842-4' WHERE `title` = 'Greenland Eskimo' AND `list_id` = 'race';
3921 #IfNotRow2Dx2 list_options list_id race option_id gros_ventres title Gros Ventres
3922 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gros_ventres','Gros Ventres','2960', '0',' 1264-1', 0);
3925 #IfRow2D list_options list_id race option_id gros_ventres
3926 UPDATE `list_options` SET `notes` = '1264-1' WHERE `option_id` = 'gros_ventres' AND `list_id` = 'race';
3929 #IfRow2D list_options list_id race title Gros Ventres
3930 UPDATE `list_options` SET `notes` = '1264-1' WHERE `title` = 'Gros Ventres' AND `list_id` = 'race';
3933 #IfNotRow2Dx2 list_options list_id race option_id guamanian title Guamanian
3934 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','guamanian','Guamanian','2970', '0',' 2087-5', 0);
3937 #IfRow2D list_options list_id race option_id guamanian
3938 UPDATE `list_options` SET `notes` = '2087-5' WHERE `option_id` = 'guamanian' AND `list_id` = 'race';
3941 #IfRow2D list_options list_id race title Guamanian
3942 UPDATE `list_options` SET `notes` = '2087-5' WHERE `title` = 'Guamanian' AND `list_id` = 'race';
3945 #IfNotRow2Dx2 list_options list_id race option_id guamanian_or_chamorro title Guamanian or Chamorro
3946 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','guamanian_or_chamorro','Guamanian or Chamorro','2980', '0',' 2086-7', 0);
3949 #IfRow2D list_options list_id race option_id guamanian_or_chamorro
3950 UPDATE `list_options` SET `notes` = '2086-7' WHERE `option_id` = 'guamanian_or_chamorro' AND `list_id` = 'race';
3953 #IfRow2D list_options list_id race title Guamanian or Chamorro
3954 UPDATE `list_options` SET `notes` = '2086-7' WHERE `title` = 'Guamanian or Chamorro' AND `list_id` = 'race';
3957 #IfNotRow2Dx2 list_options list_id race option_id gulkana title Gulkana
3958 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','gulkana','Gulkana','2990', '0',' 1767-3', 0);
3961 #IfRow2D list_options list_id race option_id gulkana
3962 UPDATE `list_options` SET `notes` = '1767-3' WHERE `option_id` = 'gulkana' AND `list_id` = 'race';
3965 #IfRow2D list_options list_id race title Gulkana
3966 UPDATE `list_options` SET `notes` = '1767-3' WHERE `title` = 'Gulkana' AND `list_id` = 'race';
3969 #IfNotRow2Dx2 list_options list_id race option_id haida title Haida
3970 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','haida','Haida','3000', '0',' 1820-0', 0);
3973 #IfRow2D list_options list_id race option_id haida
3974 UPDATE `list_options` SET `notes` = '1820-0' WHERE `option_id` = 'haida' AND `list_id` = 'race';
3977 #IfRow2D list_options list_id race title Haida
3978 UPDATE `list_options` SET `notes` = '1820-0' WHERE `title` = 'Haida' AND `list_id` = 'race';
3981 #IfNotRow2Dx2 list_options list_id race option_id haitian title Haitian
3982 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','haitian','Haitian','3010', '0',' 2071-9', 0);
3985 #IfRow2D list_options list_id race option_id haitian
3986 UPDATE `list_options` SET `notes` = '2071-9' WHERE `option_id` = 'haitian' AND `list_id` = 'race';
3989 #IfRow2D list_options list_id race title Haitian
3990 UPDATE `list_options` SET `notes` = '2071-9' WHERE `title` = 'Haitian' AND `list_id` = 'race';
3993 #IfNotRow2Dx2 list_options list_id race option_id haliwa title Haliwa
3994 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','haliwa','Haliwa','3020', '0',' 1267-4', 0);
3997 #IfRow2D list_options list_id race option_id haliwa
3998 UPDATE `list_options` SET `notes` = '1267-4' WHERE `option_id` = 'haliwa' AND `list_id` = 'race';
4001 #IfRow2D list_options list_id race title Haliwa
4002 UPDATE `list_options` SET `notes` = '1267-4' WHERE `title` = 'Haliwa' AND `list_id` = 'race';
4005 #IfNotRow2Dx2 list_options list_id race option_id hannahville title Hannahville
4006 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hannahville','Hannahville','3030', '0',' 1481-1', 0);
4009 #IfRow2D list_options list_id race option_id hannahville
4010 UPDATE `list_options` SET `notes` = '1481-1' WHERE `option_id` = 'hannahville' AND `list_id` = 'race';
4013 #IfRow2D list_options list_id race title Hannahville
4014 UPDATE `list_options` SET `notes` = '1481-1' WHERE `title` = 'Hannahville' AND `list_id` = 'race';
4017 #IfNotRow2Dx2 list_options list_id race option_id havasupai title Havasupai
4018 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','havasupai','Havasupai','3040', '0',' 1726-9', 0);
4021 #IfRow2D list_options list_id race option_id havasupai
4022 UPDATE `list_options` SET `notes` = '1726-9' WHERE `option_id` = 'havasupai' AND `list_id` = 'race';
4025 #IfRow2D list_options list_id race title Havasupai
4026 UPDATE `list_options` SET `notes` = '1726-9' WHERE `title` = 'Havasupai' AND `list_id` = 'race';
4029 #IfNotRow2Dx2 list_options list_id race option_id healy_lake title Healy Lake
4030 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','healy_lake','Healy Lake','3050', '0',' 1768-1', 0);
4033 #IfRow2D list_options list_id race option_id healy_lake
4034 UPDATE `list_options` SET `notes` = '1768-1' WHERE `option_id` = 'healy_lake' AND `list_id` = 'race';
4037 #IfRow2D list_options list_id race title Healy Lake
4038 UPDATE `list_options` SET `notes` = '1768-1' WHERE `title` = 'Healy Lake' AND `list_id` = 'race';
4041 #IfNotRow2Dx2 list_options list_id race option_id hidatsa title Hidatsa
4042 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hidatsa','Hidatsa','3060', '0',' 1269-0', 0);
4045 #IfRow2D list_options list_id race option_id hidatsa
4046 UPDATE `list_options` SET `notes` = '1269-0' WHERE `option_id` = 'hidatsa' AND `list_id` = 'race';
4049 #IfRow2D list_options list_id race title Hidatsa
4050 UPDATE `list_options` SET `notes` = '1269-0' WHERE `title` = 'Hidatsa' AND `list_id` = 'race';
4053 #IfNotRow2Dx2 list_options list_id race option_id hmong title Hmong
4054 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hmong','Hmong','3070', '0',' 2037-0', 0);
4057 #IfRow2D list_options list_id race option_id hmong
4058 UPDATE `list_options` SET `notes` = '2037-0' WHERE `option_id` = 'hmong' AND `list_id` = 'race';
4061 #IfRow2D list_options list_id race title Hmong
4062 UPDATE `list_options` SET `notes` = '2037-0' WHERE `title` = 'Hmong' AND `list_id` = 'race';
4065 #IfNotRow2Dx2 list_options list_id race option_id ho-chunk title Ho-chunk
4066 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ho-chunk','Ho-chunk','3080', '0',' 1697-2', 0);
4069 #IfRow2D list_options list_id race option_id ho-chunk
4070 UPDATE `list_options` SET `notes` = '1697-2' WHERE `option_id` = 'ho-chunk' AND `list_id` = 'race';
4073 #IfRow2D list_options list_id race title Ho-chunk
4074 UPDATE `list_options` SET `notes` = '1697-2' WHERE `title` = 'Ho-chunk' AND `list_id` = 'race';
4077 #IfNotRow2Dx2 list_options list_id race option_id hoh title Hoh
4078 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hoh','Hoh','3090', '0',' 1083-5', 0);
4081 #IfRow2D list_options list_id race option_id hoh
4082 UPDATE `list_options` SET `notes` = '1083-5' WHERE `option_id` = 'hoh' AND `list_id` = 'race';
4085 #IfRow2D list_options list_id race title Hoh
4086 UPDATE `list_options` SET `notes` = '1083-5' WHERE `title` = 'Hoh' AND `list_id` = 'race';
4089 #IfNotRow2Dx2 list_options list_id race option_id hollywood_seminole title Hollywood Seminole
4090 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hollywood_seminole','Hollywood Seminole','3100', '0',' 1570-1', 0);
4093 #IfRow2D list_options list_id race option_id hollywood_seminole
4094 UPDATE `list_options` SET `notes` = '1570-1' WHERE `option_id` = 'hollywood_seminole' AND `list_id` = 'race';
4097 #IfRow2D list_options list_id race title Hollywood Seminole
4098 UPDATE `list_options` SET `notes` = '1570-1' WHERE `title` = 'Hollywood Seminole' AND `list_id` = 'race';
4101 #IfNotRow2Dx2 list_options list_id race option_id holy_cross title Holy Cross
4102 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','holy_cross','Holy Cross','3110', '0',' 1769-9', 0);
4105 #IfRow2D list_options list_id race option_id holy_cross
4106 UPDATE `list_options` SET `notes` = '1769-9' WHERE `option_id` = 'holy_cross' AND `list_id` = 'race';
4109 #IfRow2D list_options list_id race title Holy Cross
4110 UPDATE `list_options` SET `notes` = '1769-9' WHERE `title` = 'Holy Cross' AND `list_id` = 'race';
4113 #IfNotRow2Dx2 list_options list_id race option_id hoonah title Hoonah
4114 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hoonah','Hoonah','3120', '0',' 1821-8', 0);
4117 #IfRow2D list_options list_id race option_id hoonah
4118 UPDATE `list_options` SET `notes` = '1821-8' WHERE `option_id` = 'hoonah' AND `list_id` = 'race';
4121 #IfRow2D list_options list_id race title Hoonah
4122 UPDATE `list_options` SET `notes` = '1821-8' WHERE `title` = 'Hoonah' AND `list_id` = 'race';
4125 #IfNotRow2Dx2 list_options list_id race option_id hoopa title Hoopa
4126 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hoopa','Hoopa','3130', '0',' 1271-6', 0);
4129 #IfRow2D list_options list_id race option_id hoopa
4130 UPDATE `list_options` SET `notes` = '1271-6' WHERE `option_id` = 'hoopa' AND `list_id` = 'race';
4133 #IfRow2D list_options list_id race title Hoopa
4134 UPDATE `list_options` SET `notes` = '1271-6' WHERE `title` = 'Hoopa' AND `list_id` = 'race';
4137 #IfNotRow2Dx2 list_options list_id race option_id hoopa_extension title Hoopa Extension
4138 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hoopa_extension','Hoopa Extension','3140', '0',' 1275-7', 0);
4141 #IfRow2D list_options list_id race option_id hoopa_extension
4142 UPDATE `list_options` SET `notes` = '1275-7' WHERE `option_id` = 'hoopa_extension' AND `list_id` = 'race';
4145 #IfRow2D list_options list_id race title Hoopa Extension
4146 UPDATE `list_options` SET `notes` = '1275-7' WHERE `title` = 'Hoopa Extension' AND `list_id` = 'race';
4149 #IfNotRow2Dx2 list_options list_id race option_id hooper_bay title Hooper Bay
4150 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hooper_bay','Hooper Bay','3150', '0',' 1919-0', 0);
4153 #IfRow2D list_options list_id race option_id hooper_bay
4154 UPDATE `list_options` SET `notes` = '1919-0' WHERE `option_id` = 'hooper_bay' AND `list_id` = 'race';
4157 #IfRow2D list_options list_id race title Hooper Bay
4158 UPDATE `list_options` SET `notes` = '1919-0' WHERE `title` = 'Hooper Bay' AND `list_id` = 'race';
4161 #IfNotRow2Dx2 list_options list_id race option_id hopi title Hopi
4162 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hopi','Hopi','3160', '0',' 1493-6', 0);
4165 #IfRow2D list_options list_id race option_id hopi
4166 UPDATE `list_options` SET `notes` = '1493-6' WHERE `option_id` = 'hopi' AND `list_id` = 'race';
4169 #IfRow2D list_options list_id race title Hopi
4170 UPDATE `list_options` SET `notes` = '1493-6' WHERE `title` = 'Hopi' AND `list_id` = 'race';
4173 #IfNotRow2Dx2 list_options list_id race option_id houma title Houma
4174 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','houma','Houma','3170', '0',' 1277-3', 0);
4177 #IfRow2D list_options list_id race option_id houma
4178 UPDATE `list_options` SET `notes` = '1277-3' WHERE `option_id` = 'houma' AND `list_id` = 'race';
4181 #IfRow2D list_options list_id race title Houma
4182 UPDATE `list_options` SET `notes` = '1277-3' WHERE `title` = 'Houma' AND `list_id` = 'race';
4185 #IfNotRow2Dx2 list_options list_id race option_id hualapai title Hualapai
4186 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hualapai','Hualapai','3180', '0',' 1727-7', 0);
4189 #IfRow2D list_options list_id race option_id hualapai
4190 UPDATE `list_options` SET `notes` = '1727-7' WHERE `option_id` = 'hualapai' AND `list_id` = 'race';
4193 #IfRow2D list_options list_id race title Hualapai
4194 UPDATE `list_options` SET `notes` = '1727-7' WHERE `title` = 'Hualapai' AND `list_id` = 'race';
4197 #IfNotRow2Dx2 list_options list_id race option_id hughes title Hughes
4198 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hughes','Hughes','3190', '0',' 1770-7', 0);
4201 #IfRow2D list_options list_id race option_id hughes
4202 UPDATE `list_options` SET `notes` = '1770-7' WHERE `option_id` = 'hughes' AND `list_id` = 'race';
4205 #IfRow2D list_options list_id race title Hughes
4206 UPDATE `list_options` SET `notes` = '1770-7' WHERE `title` = 'Hughes' AND `list_id` = 'race';
4209 #IfNotRow2Dx2 list_options list_id race option_id huron_potawatomi title Huron Potawatomi
4210 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','huron_potawatomi','Huron Potawatomi','3200', '0',' 1482-9', 0);
4213 #IfRow2D list_options list_id race option_id huron_potawatomi
4214 UPDATE `list_options` SET `notes` = '1482-9' WHERE `option_id` = 'huron_potawatomi' AND `list_id` = 'race';
4217 #IfRow2D list_options list_id race title Huron Potawatomi
4218 UPDATE `list_options` SET `notes` = '1482-9' WHERE `title` = 'Huron Potawatomi' AND `list_id` = 'race';
4221 #IfNotRow2Dx2 list_options list_id race option_id huslia title Huslia
4222 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','huslia','Huslia','3210', '0',' 1771-5', 0);
4225 #IfRow2D list_options list_id race option_id huslia
4226 UPDATE `list_options` SET `notes` = '1771-5' WHERE `option_id` = 'huslia' AND `list_id` = 'race';
4229 #IfRow2D list_options list_id race title Huslia
4230 UPDATE `list_options` SET `notes` = '1771-5' WHERE `title` = 'Huslia' AND `list_id` = 'race';
4233 #IfNotRow2Dx2 list_options list_id race option_id hydaburg title Hydaburg
4234 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','hydaburg','Hydaburg','3220', '0',' 1822-6', 0);
4237 #IfRow2D list_options list_id race option_id hydaburg
4238 UPDATE `list_options` SET `notes` = '1822-6' WHERE `option_id` = 'hydaburg' AND `list_id` = 'race';
4241 #IfRow2D list_options list_id race title Hydaburg
4242 UPDATE `list_options` SET `notes` = '1822-6' WHERE `title` = 'Hydaburg' AND `list_id` = 'race';
4245 #IfNotRow2Dx2 list_options list_id race option_id igiugig title Igiugig
4246 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','igiugig','Igiugig','3230', '0',' 1976-0', 0);
4249 #IfRow2D list_options list_id race option_id igiugig
4250 UPDATE `list_options` SET `notes` = '1976-0' WHERE `option_id` = 'igiugig' AND `list_id` = 'race';
4253 #IfRow2D list_options list_id race title Igiugig
4254 UPDATE `list_options` SET `notes` = '1976-0' WHERE `title` = 'Igiugig' AND `list_id` = 'race';
4257 #IfNotRow2Dx2 list_options list_id race option_id iliamna title Iliamna
4258 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iliamna','Iliamna','3240', '0',' 1772-3', 0);
4261 #IfRow2D list_options list_id race option_id iliamna
4262 UPDATE `list_options` SET `notes` = '1772-3' WHERE `option_id` = 'iliamna' AND `list_id` = 'race';
4265 #IfRow2D list_options list_id race title Iliamna
4266 UPDATE `list_options` SET `notes` = '1772-3' WHERE `title` = 'Iliamna' AND `list_id` = 'race';
4269 #IfNotRow2Dx2 list_options list_id race option_id illinois_miami title Illinois Miami
4270 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','illinois_miami','Illinois Miami','3250', '0',' 1359-9', 0);
4273 #IfRow2D list_options list_id race option_id illinois_miami
4274 UPDATE `list_options` SET `notes` = '1359-9' WHERE `option_id` = 'illinois_miami' AND `list_id` = 'race';
4277 #IfRow2D list_options list_id race title Illinois Miami
4278 UPDATE `list_options` SET `notes` = '1359-9' WHERE `title` = 'Illinois Miami' AND `list_id` = 'race';
4281 #IfNotRow2Dx2 list_options list_id race option_id inaja-cosmit title Inaja-Cosmit
4282 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','inaja-cosmit','Inaja-Cosmit','3260', '0',' 1279-9', 0);
4285 #IfRow2D list_options list_id race option_id inaja-cosmit
4286 UPDATE `list_options` SET `notes` = '1279-9' WHERE `option_id` = 'inaja-cosmit' AND `list_id` = 'race';
4289 #IfRow2D list_options list_id race title Inaja-Cosmit
4290 UPDATE `list_options` SET `notes` = '1279-9' WHERE `title` = 'Inaja-Cosmit' AND `list_id` = 'race';
4293 #IfNotRow2Dx2 list_options list_id race option_id inalik_diomede title Inalik Diomede
4294 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','inalik_diomede','Inalik Diomede','3270', '0',' 1860-6', 0);
4297 #IfRow2D list_options list_id race option_id inalik_diomede
4298 UPDATE `list_options` SET `notes` = '1860-6' WHERE `option_id` = 'inalik_diomede' AND `list_id` = 'race';
4301 #IfRow2D list_options list_id race title Inalik Diomede
4302 UPDATE `list_options` SET `notes` = '1860-6' WHERE `title` = 'Inalik Diomede' AND `list_id` = 'race';
4305 #IfNotRow2Dx2 list_options list_id race option_id indian_township title Indian Township
4306 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','indian_township','Indian Township','3280', '0',' 1442-3', 0);
4309 #IfRow2D list_options list_id race option_id indian_township
4310 UPDATE `list_options` SET `notes` = '1442-3' WHERE `option_id` = 'indian_township' AND `list_id` = 'race';
4313 #IfRow2D list_options list_id race title Indian Township
4314 UPDATE `list_options` SET `notes` = '1442-3' WHERE `title` = 'Indian Township' AND `list_id` = 'race';
4317 #IfNotRow2Dx2 list_options list_id race option_id indiana_miami title Indiana Miami
4318 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','indiana_miami','Indiana Miami','3290', '0',' 1360-7', 0);
4321 #IfRow2D list_options list_id race option_id indiana_miami
4322 UPDATE `list_options` SET `notes` = '1360-7' WHERE `option_id` = 'indiana_miami' AND `list_id` = 'race';
4325 #IfRow2D list_options list_id race title Indiana Miami
4326 UPDATE `list_options` SET `notes` = '1360-7' WHERE `title` = 'Indiana Miami' AND `list_id` = 'race';
4329 #IfNotRow2Dx2 list_options list_id race option_id indonesian title Indonesian
4330 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','indonesian','Indonesian','3300', '0',' 2038-8', 0);
4333 #IfRow2D list_options list_id race option_id indonesian
4334 UPDATE `list_options` SET `notes` = '2038-8' WHERE `option_id` = 'indonesian' AND `list_id` = 'race';
4337 #IfRow2D list_options list_id race title Indonesian
4338 UPDATE `list_options` SET `notes` = '2038-8' WHERE `title` = 'Indonesian' AND `list_id` = 'race';
4341 #IfNotRow2Dx2 list_options list_id race option_id inupiaq title Inupiaq
4342 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','inupiaq','Inupiaq','3310', '0',' 1861-4', 0);
4345 #IfRow2D list_options list_id race option_id inupiaq
4346 UPDATE `list_options` SET `notes` = '1861-4' WHERE `option_id` = 'inupiaq' AND `list_id` = 'race';
4349 #IfRow2D list_options list_id race title Inupiaq
4350 UPDATE `list_options` SET `notes` = '1861-4' WHERE `title` = 'Inupiaq' AND `list_id` = 'race';
4353 #IfNotRow2Dx2 list_options list_id race option_id inupiat_eskimo title Inupiat Eskimo
4354 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','inupiat_eskimo','Inupiat Eskimo','3320', '0',' 1844-0', 0);
4357 #IfRow2D list_options list_id race option_id inupiat_eskimo
4358 UPDATE `list_options` SET `notes` = '1844-0' WHERE `option_id` = 'inupiat_eskimo' AND `list_id` = 'race';
4361 #IfRow2D list_options list_id race title Inupiat Eskimo
4362 UPDATE `list_options` SET `notes` = '1844-0' WHERE `title` = 'Inupiat Eskimo' AND `list_id` = 'race';
4365 #IfNotRow2Dx2 list_options list_id race option_id iowa title Iowa
4366 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iowa','Iowa','3330', '0',' 1281-5', 0);
4369 #IfRow2D list_options list_id race option_id iowa
4370 UPDATE `list_options` SET `notes` = '1281-5' WHERE `option_id` = 'iowa' AND `list_id` = 'race';
4373 #IfRow2D list_options list_id race title Iowa
4374 UPDATE `list_options` SET `notes` = '1281-5' WHERE `title` = 'Iowa' AND `list_id` = 'race';
4377 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_kansas-nebraska title Iowa of Kansas-Nebraska
4378 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iowa_of_kansas-nebraska','Iowa of Kansas-Nebraska','3340', '0',' 1282-3', 0);
4381 #IfRow2D list_options list_id race option_id iowa_of_kansas-nebraska
4382 UPDATE `list_options` SET `notes` = '1282-3' WHERE `option_id` = 'iowa_of_kansas-nebraska' AND `list_id` = 'race';
4385 #IfRow2D list_options list_id race title Iowa of Kansas-Nebraska
4386 UPDATE `list_options` SET `notes` = '1282-3' WHERE `title` = 'Iowa of Kansas-Nebraska' AND `list_id` = 'race';
4389 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_oklahoma title Iowa of Oklahoma
4390 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iowa_of_oklahoma','Iowa of Oklahoma','3350', '0',' 1283-1', 0);
4393 #IfRow2D list_options list_id race option_id iowa_of_oklahoma
4394 UPDATE `list_options` SET `notes` = '1283-1' WHERE `option_id` = 'iowa_of_oklahoma' AND `list_id` = 'race';
4397 #IfRow2D list_options list_id race title Iowa of Oklahoma
4398 UPDATE `list_options` SET `notes` = '1283-1' WHERE `title` = 'Iowa of Oklahoma' AND `list_id` = 'race';
4401 #IfNotRow2Dx2 list_options list_id race option_id iowa_sac_and_fox title Iowa Sac and Fox
4402 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iowa_sac_and_fox','Iowa Sac and Fox','3360', '0',' 1552-9', 0);
4405 #IfRow2D list_options list_id race option_id iowa_sac_and_fox
4406 UPDATE `list_options` SET `notes` = '1552-9' WHERE `option_id` = 'iowa_sac_and_fox' AND `list_id` = 'race';
4409 #IfRow2D list_options list_id race title Iowa Sac and Fox
4410 UPDATE `list_options` SET `notes` = '1552-9' WHERE `title` = 'Iowa Sac and Fox' AND `list_id` = 'race';
4413 #IfNotRow2Dx2 list_options list_id race option_id iqurmuit_russian_mission title Iqurmuit (Russian Mission)
4414 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iqurmuit_russian_mission','Iqurmuit (Russian Mission)','3370', '0',' 1920-8', 0);
4417 #IfRow2D list_options list_id race option_id iqurmuit_russian_mission
4418 UPDATE `list_options` SET `notes` = '1920-8' WHERE `option_id` = 'iqurmuit_russian_mission' AND `list_id` = 'race';
4421 #IfRow2D list_options list_id race title Iqurmuit (Russian Mission)
4422 UPDATE `list_options` SET `notes` = '1920-8' WHERE `title` = 'Iqurmuit (Russian Mission)' AND `list_id` = 'race';
4425 #IfNotRow2Dx2 list_options list_id race option_id iranian title Iranian
4426 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iranian','Iranian','3380', '0',' 2121-2', 0);
4429 #IfRow2D list_options list_id race option_id iranian
4430 UPDATE `list_options` SET `notes` = '2121-2' WHERE `option_id` = 'iranian' AND `list_id` = 'race';
4433 #IfRow2D list_options list_id race title Iranian
4434 UPDATE `list_options` SET `notes` = '2121-2' WHERE `title` = 'Iranian' AND `list_id` = 'race';
4437 #IfNotRow2Dx2 list_options list_id race option_id iraqi title Iraqi
4438 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iraqi','Iraqi','3390', '0',' 2122-0', 0);
4441 #IfRow2D list_options list_id race option_id iraqi
4442 UPDATE `list_options` SET `notes` = '2122-0' WHERE `option_id` = 'iraqi' AND `list_id` = 'race';
4445 #IfRow2D list_options list_id race title Iraqi
4446 UPDATE `list_options` SET `notes` = '2122-0' WHERE `title` = 'Iraqi' AND `list_id` = 'race';
4449 #IfNotRow2Dx2 list_options list_id race option_id irish title Irish
4450 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','irish','Irish','3400', '0',' 2113-9', 0);
4453 #IfRow2D list_options list_id race option_id irish
4454 UPDATE `list_options` SET `notes` = '2113-9' WHERE `option_id` = 'irish' AND `list_id` = 'race';
4457 #IfRow2D list_options list_id race title Irish
4458 UPDATE `list_options` SET `notes` = '2113-9' WHERE `title` = 'Irish' AND `list_id` = 'race';
4461 #IfNotRow2Dx2 list_options list_id race option_id iroquois title Iroquois
4462 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iroquois','Iroquois','3410', '0',' 1285-6', 0);
4465 #IfRow2D list_options list_id race option_id iroquois
4466 UPDATE `list_options` SET `notes` = '1285-6' WHERE `option_id` = 'iroquois' AND `list_id` = 'race';
4469 #IfRow2D list_options list_id race title Iroquois
4470 UPDATE `list_options` SET `notes` = '1285-6' WHERE `title` = 'Iroquois' AND `list_id` = 'race';
4473 #IfNotRow2Dx2 list_options list_id race option_id isleta title Isleta
4474 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','isleta','Isleta','3420', '0',' 1494-4', 0);
4477 #IfRow2D list_options list_id race option_id isleta
4478 UPDATE `list_options` SET `notes` = '1494-4' WHERE `option_id` = 'isleta' AND `list_id` = 'race';
4481 #IfRow2D list_options list_id race title Isleta
4482 UPDATE `list_options` SET `notes` = '1494-4' WHERE `title` = 'Isleta' AND `list_id` = 'race';
4485 #IfNotRow2Dx2 list_options list_id race option_id israeili title Israeili
4486 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','israeili','Israeili','3430', '0',' 2127-9', 0);
4489 #IfRow2D list_options list_id race option_id israeili
4490 UPDATE `list_options` SET `notes` = '2127-9' WHERE `option_id` = 'israeili' AND `list_id` = 'race';
4493 #IfRow2D list_options list_id race title Israeili
4494 UPDATE `list_options` SET `notes` = '2127-9' WHERE `title` = 'Israeili' AND `list_id` = 'race';
4497 #IfNotRow2Dx2 list_options list_id race option_id italian title Italian
4498 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','italian','Italian','3440', '0',' 2114-7', 0);
4501 #IfRow2D list_options list_id race option_id italian
4502 UPDATE `list_options` SET `notes` = '2114-7' WHERE `option_id` = 'italian' AND `list_id` = 'race';
4505 #IfRow2D list_options list_id race title Italian
4506 UPDATE `list_options` SET `notes` = '2114-7' WHERE `title` = 'Italian' AND `list_id` = 'race';
4509 #IfNotRow2Dx2 list_options list_id race option_id ivanof_bay title Ivanof Bay
4510 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ivanof_bay','Ivanof Bay','3450', '0',' 1977-8', 0);
4513 #IfRow2D list_options list_id race option_id ivanof_bay
4514 UPDATE `list_options` SET `notes` = '1977-8' WHERE `option_id` = 'ivanof_bay' AND `list_id` = 'race';
4517 #IfRow2D list_options list_id race title Ivanof Bay
4518 UPDATE `list_options` SET `notes` = '1977-8' WHERE `title` = 'Ivanof Bay' AND `list_id` = 'race';
4521 #IfNotRow2Dx2 list_options list_id race option_id iwo_jiman title Iwo Jiman
4522 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','iwo_jiman','Iwo Jiman','3460', '0',' 2048-7', 0);
4525 #IfRow2D list_options list_id race option_id iwo_jiman
4526 UPDATE `list_options` SET `notes` = '2048-7' WHERE `option_id` = 'iwo_jiman' AND `list_id` = 'race';
4529 #IfRow2D list_options list_id race title Iwo Jiman
4530 UPDATE `list_options` SET `notes` = '2048-7' WHERE `title` = 'Iwo Jiman' AND `list_id` = 'race';
4533 #IfNotRow2Dx2 list_options list_id race option_id jamaican title Jamaican
4534 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','jamaican','Jamaican','3470', '0',' 2072-7', 0);
4537 #IfRow2D list_options list_id race option_id jamaican
4538 UPDATE `list_options` SET `notes` = '2072-7' WHERE `option_id` = 'jamaican' AND `list_id` = 'race';
4541 #IfRow2D list_options list_id race title Jamaican
4542 UPDATE `list_options` SET `notes` = '2072-7' WHERE `title` = 'Jamaican' AND `list_id` = 'race';
4545 #IfNotRow2Dx2 list_options list_id race option_id jamestown title Jamestown
4546 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','jamestown','Jamestown','3480', '0',' 1313-6', 0);
4549 #IfRow2D list_options list_id race option_id jamestown
4550 UPDATE `list_options` SET `notes` = '1313-6' WHERE `option_id` = 'jamestown' AND `list_id` = 'race';
4553 #IfRow2D list_options list_id race title Jamestown
4554 UPDATE `list_options` SET `notes` = '1313-6' WHERE `title` = 'Jamestown' AND `list_id` = 'race';
4557 #IfNotRow2Dx2 list_options list_id race option_id japanese title Japanese
4558 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','japanese','Japanese','3490', '0',' 2039-6', 0);
4561 #IfRow2D list_options list_id race option_id japanese
4562 UPDATE `list_options` SET `notes` = '2039-6' WHERE `option_id` = 'japanese' AND `list_id` = 'race';
4565 #IfRow2D list_options list_id race title Japanese
4566 UPDATE `list_options` SET `notes` = '2039-6' WHERE `title` = 'Japanese' AND `list_id` = 'race';
4569 #IfNotRow2Dx2 list_options list_id race option_id jemez title Jemez
4570 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','jemez','Jemez','3500', '0',' 1495-1', 0);
4573 #IfRow2D list_options list_id race option_id jemez
4574 UPDATE `list_options` SET `notes` = '1495-1' WHERE `option_id` = 'jemez' AND `list_id` = 'race';
4577 #IfRow2D list_options list_id race title Jemez
4578 UPDATE `list_options` SET `notes` = '1495-1' WHERE `title` = 'Jemez' AND `list_id` = 'race';
4581 #IfNotRow2Dx2 list_options list_id race option_id jena_choctaw title Jena Choctaw
4582 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','jena_choctaw','Jena Choctaw','3510', '0',' 1157-7', 0);
4585 #IfRow2D list_options list_id race option_id jena_choctaw
4586 UPDATE `list_options` SET `notes` = '1157-7' WHERE `option_id` = 'jena_choctaw' AND `list_id` = 'race';
4589 #IfRow2D list_options list_id race title Jena Choctaw
4590 UPDATE `list_options` SET `notes` = '1157-7' WHERE `title` = 'Jena Choctaw' AND `list_id` = 'race';
4593 #IfNotRow2Dx2 list_options list_id race option_id jicarilla_apache title Jicarilla Apache
4594 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','jicarilla_apache','Jicarilla Apache','3520', '0',' 1013-2', 0);
4597 #IfRow2D list_options list_id race option_id jicarilla_apache
4598 UPDATE `list_options` SET `notes` = '1013-2' WHERE `option_id` = 'jicarilla_apache' AND `list_id` = 'race';
4601 #IfRow2D list_options list_id race title Jicarilla Apache
4602 UPDATE `list_options` SET `notes` = '1013-2' WHERE `title` = 'Jicarilla Apache' AND `list_id` = 'race';
4605 #IfNotRow2Dx2 list_options list_id race option_id juaneno title Juaneno
4606 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','juaneno','Juaneno','3530', '0',' 1297-1', 0);
4609 #IfRow2D list_options list_id race option_id juaneno
4610 UPDATE `list_options` SET `notes` = '1297-1' WHERE `option_id` = 'juaneno' AND `list_id` = 'race';
4613 #IfRow2D list_options list_id race title Juaneno
4614 UPDATE `list_options` SET `notes` = '1297-1' WHERE `title` = 'Juaneno' AND `list_id` = 'race';
4617 #IfNotRow2Dx2 list_options list_id race option_id kaibab title Kaibab
4618 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kaibab','Kaibab','3540', '0',' 1423-3', 0);
4621 #IfRow2D list_options list_id race option_id kaibab
4622 UPDATE `list_options` SET `notes` = '1423-3' WHERE `option_id` = 'kaibab' AND `list_id` = 'race';
4625 #IfRow2D list_options list_id race title Kaibab
4626 UPDATE `list_options` SET `notes` = '1423-3' WHERE `title` = 'Kaibab' AND `list_id` = 'race';
4629 #IfNotRow2Dx2 list_options list_id race option_id kake title Kake
4630 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kake','Kake','3550', '0',' 1823-4', 0);
4633 #IfRow2D list_options list_id race option_id kake
4634 UPDATE `list_options` SET `notes` = '1823-4' WHERE `option_id` = 'kake' AND `list_id` = 'race';
4637 #IfRow2D list_options list_id race title Kake
4638 UPDATE `list_options` SET `notes` = '1823-4' WHERE `title` = 'Kake' AND `list_id` = 'race';
4641 #IfNotRow2Dx2 list_options list_id race option_id kaktovik title Kaktovik
4642 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kaktovik','Kaktovik','3560', '0',' 1862-2', 0);
4645 #IfRow2D list_options list_id race option_id kaktovik
4646 UPDATE `list_options` SET `notes` = '1862-2' WHERE `option_id` = 'kaktovik' AND `list_id` = 'race';
4649 #IfRow2D list_options list_id race title Kaktovik
4650 UPDATE `list_options` SET `notes` = '1862-2' WHERE `title` = 'Kaktovik' AND `list_id` = 'race';
4653 #IfNotRow2Dx2 list_options list_id race option_id kalapuya title Kalapuya
4654 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kalapuya','Kalapuya','3570', '0',' 1395-3', 0);
4657 #IfRow2D list_options list_id race option_id kalapuya
4658 UPDATE `list_options` SET `notes` = '1395-3' WHERE `option_id` = 'kalapuya' AND `list_id` = 'race';
4661 #IfRow2D list_options list_id race title Kalapuya
4662 UPDATE `list_options` SET `notes` = '1395-3' WHERE `title` = 'Kalapuya' AND `list_id` = 'race';
4665 #IfNotRow2Dx2 list_options list_id race option_id kalispel title Kalispel
4666 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kalispel','Kalispel','3580', '0',' 1299-7', 0);
4669 #IfRow2D list_options list_id race option_id kalispel
4670 UPDATE `list_options` SET `notes` = '1299-7' WHERE `option_id` = 'kalispel' AND `list_id` = 'race';
4673 #IfRow2D list_options list_id race title Kalispel
4674 UPDATE `list_options` SET `notes` = '1299-7' WHERE `title` = 'Kalispel' AND `list_id` = 'race';
4677 #IfNotRow2Dx2 list_options list_id race option_id kalskag title Kalskag
4678 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kalskag','Kalskag','3590', '0',' 1921-6', 0);
4681 #IfRow2D list_options list_id race option_id kalskag
4682 UPDATE `list_options` SET `notes` = '1921-6' WHERE `option_id` = 'kalskag' AND `list_id` = 'race';
4685 #IfRow2D list_options list_id race title Kalskag
4686 UPDATE `list_options` SET `notes` = '1921-6' WHERE `title` = 'Kalskag' AND `list_id` = 'race';
4689 #IfNotRow2Dx2 list_options list_id race option_id kaltag title Kaltag
4690 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kaltag','Kaltag','3600', '0',' 1773-1', 0);
4693 #IfRow2D list_options list_id race option_id kaltag
4694 UPDATE `list_options` SET `notes` = '1773-1' WHERE `option_id` = 'kaltag' AND `list_id` = 'race';
4697 #IfRow2D list_options list_id race title Kaltag
4698 UPDATE `list_options` SET `notes` = '1773-1' WHERE `title` = 'Kaltag' AND `list_id` = 'race';
4701 #IfNotRow2Dx2 list_options list_id race option_id karluk title Karluk
4702 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','karluk','Karluk','3610', '0',' 1995-0', 0);
4705 #IfRow2D list_options list_id race option_id karluk
4706 UPDATE `list_options` SET `notes` = '1995-0' WHERE `option_id` = 'karluk' AND `list_id` = 'race';
4709 #IfRow2D list_options list_id race title Karluk
4710 UPDATE `list_options` SET `notes` = '1995-0' WHERE `title` = 'Karluk' AND `list_id` = 'race';
4713 #IfNotRow2Dx2 list_options list_id race option_id karuk title Karuk
4714 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','karuk','Karuk','3620', '0',' 1301-1', 0);
4717 #IfRow2D list_options list_id race option_id karuk
4718 UPDATE `list_options` SET `notes` = '1301-1' WHERE `option_id` = 'karuk' AND `list_id` = 'race';
4721 #IfRow2D list_options list_id race title Karuk
4722 UPDATE `list_options` SET `notes` = '1301-1' WHERE `title` = 'Karuk' AND `list_id` = 'race';
4725 #IfNotRow2Dx2 list_options list_id race option_id kasaan title Kasaan
4726 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kasaan','Kasaan','3630', '0',' 1824-2', 0);
4729 #IfRow2D list_options list_id race option_id kasaan
4730 UPDATE `list_options` SET `notes` = '1824-2' WHERE `option_id` = 'kasaan' AND `list_id` = 'race';
4733 #IfRow2D list_options list_id race title Kasaan
4734 UPDATE `list_options` SET `notes` = '1824-2' WHERE `title` = 'Kasaan' AND `list_id` = 'race';
4737 #IfNotRow2Dx2 list_options list_id race option_id kashia title Kashia
4738 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kashia','Kashia','3640', '0',' 1468-8', 0);
4741 #IfRow2D list_options list_id race option_id kashia
4742 UPDATE `list_options` SET `notes` = '1468-8' WHERE `option_id` = 'kashia' AND `list_id` = 'race';
4745 #IfRow2D list_options list_id race title Kashia
4746 UPDATE `list_options` SET `notes` = '1468-8' WHERE `title` = 'Kashia' AND `list_id` = 'race';
4749 #IfNotRow2Dx2 list_options list_id race option_id kasigluk title Kasigluk
4750 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kasigluk','Kasigluk','3650', '0',' 1922-4', 0);
4753 #IfRow2D list_options list_id race option_id kasigluk
4754 UPDATE `list_options` SET `notes` = '1922-4' WHERE `option_id` = 'kasigluk' AND `list_id` = 'race';
4757 #IfRow2D list_options list_id race title Kasigluk
4758 UPDATE `list_options` SET `notes` = '1922-4' WHERE `title` = 'Kasigluk' AND `list_id` = 'race';
4761 #IfNotRow2Dx2 list_options list_id race option_id kathlamet title Kathlamet
4762 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kathlamet','Kathlamet','3660', '0',' 1117-1', 0);
4765 #IfRow2D list_options list_id race option_id kathlamet
4766 UPDATE `list_options` SET `notes` = '1117-1' WHERE `option_id` = 'kathlamet' AND `list_id` = 'race';
4769 #IfRow2D list_options list_id race title Kathlamet
4770 UPDATE `list_options` SET `notes` = '1117-1' WHERE `title` = 'Kathlamet' AND `list_id` = 'race';
4773 #IfNotRow2Dx2 list_options list_id race option_id kaw title Kaw
4774 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kaw','Kaw','3670', '0',' 1303-7', 0);
4777 #IfRow2D list_options list_id race option_id kaw
4778 UPDATE `list_options` SET `notes` = '1303-7' WHERE `option_id` = 'kaw' AND `list_id` = 'race';
4781 #IfRow2D list_options list_id race title Kaw
4782 UPDATE `list_options` SET `notes` = '1303-7' WHERE `title` = 'Kaw' AND `list_id` = 'race';
4785 #IfNotRow2Dx2 list_options list_id race option_id kawaiisu title Kawaiisu
4786 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kawaiisu','Kawaiisu','3680', '0',' 1058-7', 0);
4789 #IfRow2D list_options list_id race option_id kawaiisu
4790 UPDATE `list_options` SET `notes` = '1058-7' WHERE `option_id` = 'kawaiisu' AND `list_id` = 'race';
4793 #IfRow2D list_options list_id race title Kawaiisu
4794 UPDATE `list_options` SET `notes` = '1058-7' WHERE `title` = 'Kawaiisu' AND `list_id` = 'race';
4797 #IfNotRow2Dx2 list_options list_id race option_id kawerak title Kawerak
4798 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kawerak','Kawerak','3690', '0',' 1863-0', 0);
4801 #IfRow2D list_options list_id race option_id kawerak
4802 UPDATE `list_options` SET `notes` = '1863-0' WHERE `option_id` = 'kawerak' AND `list_id` = 'race';
4805 #IfRow2D list_options list_id race title Kawerak
4806 UPDATE `list_options` SET `notes` = '1863-0' WHERE `title` = 'Kawerak' AND `list_id` = 'race';
4809 #IfNotRow2Dx2 list_options list_id race option_id kenaitze title Kenaitze
4810 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kenaitze','Kenaitze','3700', '0',' 1825-9', 0);
4813 #IfRow2D list_options list_id race option_id kenaitze
4814 UPDATE `list_options` SET `notes` = '1825-9' WHERE `option_id` = 'kenaitze' AND `list_id` = 'race';
4817 #IfRow2D list_options list_id race title Kenaitze
4818 UPDATE `list_options` SET `notes` = '1825-9' WHERE `title` = 'Kenaitze' AND `list_id` = 'race';
4821 #IfNotRow2Dx2 list_options list_id race option_id keres title Keres
4822 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','keres','Keres','3710', '0',' 1496-9', 0);
4825 #IfRow2D list_options list_id race option_id keres
4826 UPDATE `list_options` SET `notes` = '1496-9' WHERE `option_id` = 'keres' AND `list_id` = 'race';
4829 #IfRow2D list_options list_id race title Keres
4830 UPDATE `list_options` SET `notes` = '1496-9' WHERE `title` = 'Keres' AND `list_id` = 'race';
4833 #IfNotRow2Dx2 list_options list_id race option_id kern_river title Kern River
4834 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kern_river','Kern River','3720', '0',' 1059-5', 0);
4837 #IfRow2D list_options list_id race option_id kern_river
4838 UPDATE `list_options` SET `notes` = '1059-5' WHERE `option_id` = 'kern_river' AND `list_id` = 'race';
4841 #IfRow2D list_options list_id race title Kern River
4842 UPDATE `list_options` SET `notes` = '1059-5' WHERE `title` = 'Kern River' AND `list_id` = 'race';
4845 #IfNotRow2Dx2 list_options list_id race option_id ketchikan title Ketchikan
4846 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ketchikan','Ketchikan','3730', '0',' 1826-7', 0);
4849 #IfRow2D list_options list_id race option_id ketchikan
4850 UPDATE `list_options` SET `notes` = '1826-7' WHERE `option_id` = 'ketchikan' AND `list_id` = 'race';
4853 #IfRow2D list_options list_id race title Ketchikan
4854 UPDATE `list_options` SET `notes` = '1826-7' WHERE `title` = 'Ketchikan' AND `list_id` = 'race';
4857 #IfNotRow2Dx2 list_options list_id race option_id keweenaw title Keweenaw
4858 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','keweenaw','Keweenaw','3740', '0',' 1131-2', 0);
4861 #IfRow2D list_options list_id race option_id keweenaw
4862 UPDATE `list_options` SET `notes` = '1131-2' WHERE `option_id` = 'keweenaw' AND `list_id` = 'race';
4865 #IfRow2D list_options list_id race title Keweenaw
4866 UPDATE `list_options` SET `notes` = '1131-2' WHERE `title` = 'Keweenaw' AND `list_id` = 'race';
4869 #IfNotRow2Dx2 list_options list_id race option_id kialegee title Kialegee
4870 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kialegee','Kialegee','3750', '0',' 1198-1', 0);
4873 #IfRow2D list_options list_id race option_id kialegee
4874 UPDATE `list_options` SET `notes` = '1198-1' WHERE `option_id` = 'kialegee' AND `list_id` = 'race';
4877 #IfRow2D list_options list_id race title Kialegee
4878 UPDATE `list_options` SET `notes` = '1198-1' WHERE `title` = 'Kialegee' AND `list_id` = 'race';
4881 #IfNotRow2Dx2 list_options list_id race option_id kiana title Kiana
4882 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kiana','Kiana','3760', '0',' 1864-8', 0);
4885 #IfRow2D list_options list_id race option_id kiana
4886 UPDATE `list_options` SET `notes` = '1864-8' WHERE `option_id` = 'kiana' AND `list_id` = 'race';
4889 #IfRow2D list_options list_id race title Kiana
4890 UPDATE `list_options` SET `notes` = '1864-8' WHERE `title` = 'Kiana' AND `list_id` = 'race';
4893 #IfNotRow2Dx2 list_options list_id race option_id kickapoo title Kickapoo
4894 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kickapoo','Kickapoo','3770', '0',' 1305-2', 0);
4897 #IfRow2D list_options list_id race option_id kickapoo
4898 UPDATE `list_options` SET `notes` = '1305-2' WHERE `option_id` = 'kickapoo' AND `list_id` = 'race';
4901 #IfRow2D list_options list_id race title Kickapoo
4902 UPDATE `list_options` SET `notes` = '1305-2' WHERE `title` = 'Kickapoo' AND `list_id` = 'race';
4905 #IfNotRow2Dx2 list_options list_id race option_id kikiallus title Kikiallus
4906 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kikiallus','Kikiallus','3780', '0',' 1520-6', 0);
4909 #IfRow2D list_options list_id race option_id kikiallus
4910 UPDATE `list_options` SET `notes` = '1520-6' WHERE `option_id` = 'kikiallus' AND `list_id` = 'race';
4913 #IfRow2D list_options list_id race title Kikiallus
4914 UPDATE `list_options` SET `notes` = '1520-6' WHERE `title` = 'Kikiallus' AND `list_id` = 'race';
4917 #IfNotRow2Dx2 list_options list_id race option_id king_cove title King Cove
4918 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','king_cove','King Cove','3790', '0',' 2014-9', 0);
4921 #IfRow2D list_options list_id race option_id king_cove
4922 UPDATE `list_options` SET `notes` = '2014-9' WHERE `option_id` = 'king_cove' AND `list_id` = 'race';
4925 #IfRow2D list_options list_id race title King Cove
4926 UPDATE `list_options` SET `notes` = '2014-9' WHERE `title` = 'King Cove' AND `list_id` = 'race';
4929 #IfNotRow2Dx2 list_options list_id race option_id king_salmon title King Salmon
4930 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','king_salmon','King Salmon','3800', '0',' 1978-6', 0);
4933 #IfRow2D list_options list_id race option_id king_salmon
4934 UPDATE `list_options` SET `notes` = '1978-6' WHERE `option_id` = 'king_salmon' AND `list_id` = 'race';
4937 #IfRow2D list_options list_id race title King Salmon
4938 UPDATE `list_options` SET `notes` = '1978-6' WHERE `title` = 'King Salmon' AND `list_id` = 'race';
4941 #IfNotRow2Dx2 list_options list_id race option_id kiowa title Kiowa
4942 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kiowa','Kiowa','3810', '0',' 1309-4', 0);
4945 #IfRow2D list_options list_id race option_id kiowa
4946 UPDATE `list_options` SET `notes` = '1309-4' WHERE `option_id` = 'kiowa' AND `list_id` = 'race';
4949 #IfRow2D list_options list_id race title Kiowa
4950 UPDATE `list_options` SET `notes` = '1309-4' WHERE `title` = 'Kiowa' AND `list_id` = 'race';
4953 #IfNotRow2Dx2 list_options list_id race option_id kipnuk title Kipnuk
4954 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kipnuk','Kipnuk','3820', '0',' 1923-2', 0);
4957 #IfRow2D list_options list_id race option_id kipnuk
4958 UPDATE `list_options` SET `notes` = '1923-2' WHERE `option_id` = 'kipnuk' AND `list_id` = 'race';
4961 #IfRow2D list_options list_id race title Kipnuk
4962 UPDATE `list_options` SET `notes` = '1923-2' WHERE `title` = 'Kipnuk' AND `list_id` = 'race';
4965 #IfNotRow2Dx2 list_options list_id race option_id kiribati title Kiribati
4966 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kiribati','Kiribati','3830', '0',' 2096-6', 0);
4969 #IfRow2D list_options list_id race option_id kiribati
4970 UPDATE `list_options` SET `notes` = '2096-6' WHERE `option_id` = 'kiribati' AND `list_id` = 'race';
4973 #IfRow2D list_options list_id race title Kiribati
4974 UPDATE `list_options` SET `notes` = '2096-6' WHERE `title` = 'Kiribati' AND `list_id` = 'race';
4977 #IfNotRow2Dx2 list_options list_id race option_id kivalina title Kivalina
4978 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kivalina','Kivalina','3840', '0',' 1865-5', 0);
4981 #IfRow2D list_options list_id race option_id kivalina
4982 UPDATE `list_options` SET `notes` = '1865-5' WHERE `option_id` = 'kivalina' AND `list_id` = 'race';
4985 #IfRow2D list_options list_id race title Kivalina
4986 UPDATE `list_options` SET `notes` = '1865-5' WHERE `title` = 'Kivalina' AND `list_id` = 'race';
4989 #IfNotRow2Dx2 list_options list_id race option_id klallam title Klallam
4990 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','klallam','Klallam','3850', '0',' 1312-8', 0);
4993 #IfRow2D list_options list_id race option_id klallam
4994 UPDATE `list_options` SET `notes` = '1312-8' WHERE `option_id` = 'klallam' AND `list_id` = 'race';
4997 #IfRow2D list_options list_id race title Klallam
4998 UPDATE `list_options` SET `notes` = '1312-8' WHERE `title` = 'Klallam' AND `list_id` = 'race';
5001 #IfNotRow2Dx2 list_options list_id race option_id klamath title Klamath
5002 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','klamath','Klamath','3860', '0',' 1317-7', 0);
5005 #IfRow2D list_options list_id race option_id klamath
5006 UPDATE `list_options` SET `notes` = '1317-7' WHERE `option_id` = 'klamath' AND `list_id` = 'race';
5009 #IfRow2D list_options list_id race title Klamath
5010 UPDATE `list_options` SET `notes` = '1317-7' WHERE `title` = 'Klamath' AND `list_id` = 'race';
5013 #IfNotRow2Dx2 list_options list_id race option_id klawock title Klawock
5014 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','klawock','Klawock','3870', '0',' 1827-5', 0);
5017 #IfRow2D list_options list_id race option_id klawock
5018 UPDATE `list_options` SET `notes` = '1827-5' WHERE `option_id` = 'klawock' AND `list_id` = 'race';
5021 #IfRow2D list_options list_id race title Klawock
5022 UPDATE `list_options` SET `notes` = '1827-5' WHERE `title` = 'Klawock' AND `list_id` = 'race';
5025 #IfNotRow2Dx2 list_options list_id race option_id kluti_kaah title Kluti Kaah
5026 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kluti_kaah','Kluti Kaah','3880', '0',' 1774-9', 0);
5029 #IfRow2D list_options list_id race option_id kluti_kaah
5030 UPDATE `list_options` SET `notes` = '1774-9' WHERE `option_id` = 'kluti_kaah' AND `list_id` = 'race';
5033 #IfRow2D list_options list_id race title Kluti Kaah
5034 UPDATE `list_options` SET `notes` = '1774-9' WHERE `title` = 'Kluti Kaah' AND `list_id` = 'race';
5037 #IfNotRow2Dx2 list_options list_id race option_id knik title Knik
5038 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','knik','Knik','3890', '0',' 1775-6', 0);
5041 #IfRow2D list_options list_id race option_id knik
5042 UPDATE `list_options` SET `notes` = '1775-6' WHERE `option_id` = 'knik' AND `list_id` = 'race';
5045 #IfRow2D list_options list_id race title Knik
5046 UPDATE `list_options` SET `notes` = '1775-6' WHERE `title` = 'Knik' AND `list_id` = 'race';
5049 #IfNotRow2Dx2 list_options list_id race option_id kobuk title Kobuk
5050 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kobuk','Kobuk','3900', '0',' 1866-3', 0);
5053 #IfRow2D list_options list_id race option_id kobuk
5054 UPDATE `list_options` SET `notes` = '1866-3' WHERE `option_id` = 'kobuk' AND `list_id` = 'race';
5057 #IfRow2D list_options list_id race title Kobuk
5058 UPDATE `list_options` SET `notes` = '1866-3' WHERE `title` = 'Kobuk' AND `list_id` = 'race';
5061 #IfNotRow2Dx2 list_options list_id race option_id kodiak title Kodiak
5062 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kodiak','Kodiak','3910', '0',' 1996-8', 0);
5065 #IfRow2D list_options list_id race option_id kodiak
5066 UPDATE `list_options` SET `notes` = '1996-8' WHERE `option_id` = 'kodiak' AND `list_id` = 'race';
5069 #IfRow2D list_options list_id race title Kodiak
5070 UPDATE `list_options` SET `notes` = '1996-8' WHERE `title` = 'Kodiak' AND `list_id` = 'race';
5073 #IfNotRow2Dx2 list_options list_id race option_id kokhanok title Kokhanok
5074 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kokhanok','Kokhanok','3920', '0',' 1979-4', 0);
5077 #IfRow2D list_options list_id race option_id kokhanok
5078 UPDATE `list_options` SET `notes` = '1979-4' WHERE `option_id` = 'kokhanok' AND `list_id` = 'race';
5081 #IfRow2D list_options list_id race title Kokhanok
5082 UPDATE `list_options` SET `notes` = '1979-4' WHERE `title` = 'Kokhanok' AND `list_id` = 'race';
5085 #IfNotRow2Dx2 list_options list_id race option_id koliganek title Koliganek
5086 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','koliganek','Koliganek','3930', '0',' 1924-0', 0);
5089 #IfRow2D list_options list_id race option_id koliganek
5090 UPDATE `list_options` SET `notes` = '1924-0' WHERE `option_id` = 'koliganek' AND `list_id` = 'race';
5093 #IfRow2D list_options list_id race title Koliganek
5094 UPDATE `list_options` SET `notes` = '1924-0' WHERE `title` = 'Koliganek' AND `list_id` = 'race';
5097 #IfNotRow2Dx2 list_options list_id race option_id kongiganak title Kongiganak
5098 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kongiganak','Kongiganak','3940', '0',' 1925-7', 0);
5101 #IfRow2D list_options list_id race option_id kongiganak
5102 UPDATE `list_options` SET `notes` = '1925-7' WHERE `option_id` = 'kongiganak' AND `list_id` = 'race';
5105 #IfRow2D list_options list_id race title Kongiganak
5106 UPDATE `list_options` SET `notes` = '1925-7' WHERE `title` = 'Kongiganak' AND `list_id` = 'race';
5109 #IfNotRow2Dx2 list_options list_id race option_id koniag_aleut title Koniag Aleut
5110 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','koniag_aleut','Koniag Aleut','3950', '0',' 1992-7', 0);
5113 #IfRow2D list_options list_id race option_id koniag_aleut
5114 UPDATE `list_options` SET `notes` = '1992-7' WHERE `option_id` = 'koniag_aleut' AND `list_id` = 'race';
5117 #IfRow2D list_options list_id race title Koniag Aleut
5118 UPDATE `list_options` SET `notes` = '1992-7' WHERE `title` = 'Koniag Aleut' AND `list_id` = 'race';
5121 #IfNotRow2Dx2 list_options list_id race option_id konkow title Konkow
5122 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','konkow','Konkow','3960', '0',' 1319-3', 0);
5125 #IfRow2D list_options list_id race option_id konkow
5126 UPDATE `list_options` SET `notes` = '1319-3' WHERE `option_id` = 'konkow' AND `list_id` = 'race';
5129 #IfRow2D list_options list_id race title Konkow
5130 UPDATE `list_options` SET `notes` = '1319-3' WHERE `title` = 'Konkow' AND `list_id` = 'race';
5133 #IfNotRow2Dx2 list_options list_id race option_id kootenai title Kootenai
5134 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kootenai','Kootenai','3970', '0',' 1321-9', 0);
5137 #IfRow2D list_options list_id race option_id kootenai
5138 UPDATE `list_options` SET `notes` = '1321-9' WHERE `option_id` = 'kootenai' AND `list_id` = 'race';
5141 #IfRow2D list_options list_id race title Kootenai
5142 UPDATE `list_options` SET `notes` = '1321-9' WHERE `title` = 'Kootenai' AND `list_id` = 'race';
5145 #IfNotRow2Dx2 list_options list_id race option_id korean title Korean
5146 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','korean','Korean','3980', '0',' 2040-4', 0);
5149 #IfRow2D list_options list_id race option_id korean
5150 UPDATE `list_options` SET `notes` = '2040-4' WHERE `option_id` = 'korean' AND `list_id` = 'race';
5153 #IfRow2D list_options list_id race title Korean
5154 UPDATE `list_options` SET `notes` = '2040-4' WHERE `title` = 'Korean' AND `list_id` = 'race';
5157 #IfNotRow2Dx2 list_options list_id race option_id kosraean title Kosraean
5158 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kosraean','Kosraean','3990', '0',' 2093-3', 0);
5161 #IfRow2D list_options list_id race option_id kosraean
5162 UPDATE `list_options` SET `notes` = '2093-3' WHERE `option_id` = 'kosraean' AND `list_id` = 'race';
5165 #IfRow2D list_options list_id race title Kosraean
5166 UPDATE `list_options` SET `notes` = '2093-3' WHERE `title` = 'Kosraean' AND `list_id` = 'race';
5169 #IfNotRow2Dx2 list_options list_id race option_id kotlik title Kotlik
5170 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kotlik','Kotlik','4000', '0',' 1926-5', 0);
5173 #IfRow2D list_options list_id race option_id kotlik
5174 UPDATE `list_options` SET `notes` = '1926-5' WHERE `option_id` = 'kotlik' AND `list_id` = 'race';
5177 #IfRow2D list_options list_id race title Kotlik
5178 UPDATE `list_options` SET `notes` = '1926-5' WHERE `title` = 'Kotlik' AND `list_id` = 'race';
5181 #IfNotRow2Dx2 list_options list_id race option_id kotzebue title Kotzebue
5182 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kotzebue','Kotzebue','4010', '0',' 1867-1', 0);
5185 #IfRow2D list_options list_id race option_id kotzebue
5186 UPDATE `list_options` SET `notes` = '1867-1' WHERE `option_id` = 'kotzebue' AND `list_id` = 'race';
5189 #IfRow2D list_options list_id race title Kotzebue
5190 UPDATE `list_options` SET `notes` = '1867-1' WHERE `title` = 'Kotzebue' AND `list_id` = 'race';
5193 #IfNotRow2Dx2 list_options list_id race option_id koyuk title Koyuk
5194 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','koyuk','Koyuk','4020', '0',' 1868-9', 0);
5197 #IfRow2D list_options list_id race option_id koyuk
5198 UPDATE `list_options` SET `notes` = '1868-9' WHERE `option_id` = 'koyuk' AND `list_id` = 'race';
5201 #IfRow2D list_options list_id race title Koyuk
5202 UPDATE `list_options` SET `notes` = '1868-9' WHERE `title` = 'Koyuk' AND `list_id` = 'race';
5205 #IfNotRow2Dx2 list_options list_id race option_id koyukuk title Koyukuk
5206 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','koyukuk','Koyukuk','4030', '0',' 1776-4', 0);
5209 #IfRow2D list_options list_id race option_id koyukuk
5210 UPDATE `list_options` SET `notes` = '1776-4' WHERE `option_id` = 'koyukuk' AND `list_id` = 'race';
5213 #IfRow2D list_options list_id race title Koyukuk
5214 UPDATE `list_options` SET `notes` = '1776-4' WHERE `title` = 'Koyukuk' AND `list_id` = 'race';
5217 #IfNotRow2Dx2 list_options list_id race option_id kwethluk title Kwethluk
5218 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kwethluk','Kwethluk','4040', '0',' 1927-3', 0);
5221 #IfRow2D list_options list_id race option_id kwethluk
5222 UPDATE `list_options` SET `notes` = '1927-3' WHERE `option_id` = 'kwethluk' AND `list_id` = 'race';
5225 #IfRow2D list_options list_id race title Kwethluk
5226 UPDATE `list_options` SET `notes` = '1927-3' WHERE `title` = 'Kwethluk' AND `list_id` = 'race';
5229 #IfNotRow2Dx2 list_options list_id race option_id kwigillingok title Kwigillingok
5230 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kwigillingok','Kwigillingok','4050', '0',' 1928-1', 0);
5233 #IfRow2D list_options list_id race option_id kwigillingok
5234 UPDATE `list_options` SET `notes` = '1928-1' WHERE `option_id` = 'kwigillingok' AND `list_id` = 'race';
5237 #IfRow2D list_options list_id race title Kwigillingok
5238 UPDATE `list_options` SET `notes` = '1928-1' WHERE `title` = 'Kwigillingok' AND `list_id` = 'race';
5241 #IfNotRow2Dx2 list_options list_id race option_id kwiguk title Kwiguk
5242 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','kwiguk','Kwiguk','4060', '0',' 1869-7', 0);
5245 #IfRow2D list_options list_id race option_id kwiguk
5246 UPDATE `list_options` SET `notes` = '1869-7' WHERE `option_id` = 'kwiguk' AND `list_id` = 'race';
5249 #IfRow2D list_options list_id race title Kwiguk
5250 UPDATE `list_options` SET `notes` = '1869-7' WHERE `title` = 'Kwiguk' AND `list_id` = 'race';
5253 #IfNotRow2Dx2 list_options list_id race option_id la_jolla title La Jolla
5254 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','la_jolla','La Jolla','4070', '0',' 1332-6', 0);
5257 #IfRow2D list_options list_id race option_id la_jolla
5258 UPDATE `list_options` SET `notes` = '1332-6' WHERE `option_id` = 'la_jolla' AND `list_id` = 'race';
5261 #IfRow2D list_options list_id race title La Jolla
5262 UPDATE `list_options` SET `notes` = '1332-6' WHERE `title` = 'La Jolla' AND `list_id` = 'race';
5265 #IfNotRow2Dx2 list_options list_id race option_id la_posta title La Posta
5266 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','la_posta','La Posta','4080', '0',' 1226-0', 0);
5269 #IfRow2D list_options list_id race option_id la_posta
5270 UPDATE `list_options` SET `notes` = '1226-0' WHERE `option_id` = 'la_posta' AND `list_id` = 'race';
5273 #IfRow2D list_options list_id race title La Posta
5274 UPDATE `list_options` SET `notes` = '1226-0' WHERE `title` = 'La Posta' AND `list_id` = 'race';
5277 #IfNotRow2Dx2 list_options list_id race option_id lac_courte_oreilles title Lac Courte Oreilles
5278 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lac_courte_oreilles','Lac Courte Oreilles','4090', '0',' 1132-0', 0);
5281 #IfRow2D list_options list_id race option_id lac_courte_oreilles
5282 UPDATE `list_options` SET `notes` = '1132-0' WHERE `option_id` = 'lac_courte_oreilles' AND `list_id` = 'race';
5285 #IfRow2D list_options list_id race title Lac Courte Oreilles
5286 UPDATE `list_options` SET `notes` = '1132-0' WHERE `title` = 'Lac Courte Oreilles' AND `list_id` = 'race';
5289 #IfNotRow2Dx2 list_options list_id race option_id lac_du_flambeau title Lac du Flambeau
5290 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lac_du_flambeau','Lac du Flambeau','4100', '0',' 1133-8', 0);
5293 #IfRow2D list_options list_id race option_id lac_du_flambeau
5294 UPDATE `list_options` SET `notes` = '1133-8' WHERE `option_id` = 'lac_du_flambeau' AND `list_id` = 'race';
5297 #IfRow2D list_options list_id race title Lac du Flambeau
5298 UPDATE `list_options` SET `notes` = '1133-8' WHERE `title` = 'Lac du Flambeau' AND `list_id` = 'race';
5301 #IfNotRow2Dx2 list_options list_id race option_id lac_vieux_desert_chippewa title Lac Vieux Desert Chippewa
5302 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lac_vieux_desert_chippewa','Lac Vieux Desert Chippewa','4110', '0',' 1134-6', 0);
5305 #IfRow2D list_options list_id race option_id lac_vieux_desert_chippewa
5306 UPDATE `list_options` SET `notes` = '1134-6' WHERE `option_id` = 'lac_vieux_desert_chippewa' AND `list_id` = 'race';
5309 #IfRow2D list_options list_id race title Lac Vieux Desert Chippewa
5310 UPDATE `list_options` SET `notes` = '1134-6' WHERE `title` = 'Lac Vieux Desert Chippewa' AND `list_id` = 'race';
5313 #IfNotRow2Dx2 list_options list_id race option_id laguna title Laguna
5314 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','laguna','Laguna','4120', '0',' 1497-7', 0);
5317 #IfRow2D list_options list_id race option_id laguna
5318 UPDATE `list_options` SET `notes` = '1497-7' WHERE `option_id` = 'laguna' AND `list_id` = 'race';
5321 #IfRow2D list_options list_id race title Laguna
5322 UPDATE `list_options` SET `notes` = '1497-7' WHERE `title` = 'Laguna' AND `list_id` = 'race';
5325 #IfNotRow2Dx2 list_options list_id race option_id lake_minchumina title Lake Minchumina
5326 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lake_minchumina','Lake Minchumina','4130', '0',' 1777-2', 0);
5329 #IfRow2D list_options list_id race option_id lake_minchumina
5330 UPDATE `list_options` SET `notes` = '1777-2' WHERE `option_id` = 'lake_minchumina' AND `list_id` = 'race';
5333 #IfRow2D list_options list_id race title Lake Minchumina
5334 UPDATE `list_options` SET `notes` = '1777-2' WHERE `title` = 'Lake Minchumina' AND `list_id` = 'race';
5337 #IfNotRow2Dx2 list_options list_id race option_id lake_superior title Lake Superior
5338 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lake_superior','Lake Superior','4140', '0',' 1135-3', 0);
5341 #IfRow2D list_options list_id race option_id lake_superior
5342 UPDATE `list_options` SET `notes` = '1135-3' WHERE `option_id` = 'lake_superior' AND `list_id` = 'race';
5345 #IfRow2D list_options list_id race title Lake Superior
5346 UPDATE `list_options` SET `notes` = '1135-3' WHERE `title` = 'Lake Superior' AND `list_id` = 'race';
5349 #IfNotRow2Dx2 list_options list_id race option_id lake_traverse_sioux title Lake Traverse Sioux
5350 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lake_traverse_sioux','Lake Traverse Sioux','4150', '0',' 1617-0', 0);
5353 #IfRow2D list_options list_id race option_id lake_traverse_sioux
5354 UPDATE `list_options` SET `notes` = '1617-0' WHERE `option_id` = 'lake_traverse_sioux' AND `list_id` = 'race';
5357 #IfRow2D list_options list_id race title Lake Traverse Sioux
5358 UPDATE `list_options` SET `notes` = '1617-0' WHERE `title` = 'Lake Traverse Sioux' AND `list_id` = 'race';
5361 #IfNotRow2Dx2 list_options list_id race option_id laotian title Laotian
5362 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','laotian','Laotian','4160', '0',' 2041-2', 0);
5365 #IfRow2D list_options list_id race option_id laotian
5366 UPDATE `list_options` SET `notes` = '2041-2' WHERE `option_id` = 'laotian' AND `list_id` = 'race';
5369 #IfRow2D list_options list_id race title Laotian
5370 UPDATE `list_options` SET `notes` = '2041-2' WHERE `title` = 'Laotian' AND `list_id` = 'race';
5373 #IfNotRow2Dx2 list_options list_id race option_id larsen_bay title Larsen Bay
5374 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','larsen_bay','Larsen Bay','4170', '0',' 1997-6', 0);
5377 #IfRow2D list_options list_id race option_id larsen_bay
5378 UPDATE `list_options` SET `notes` = '1997-6' WHERE `option_id` = 'larsen_bay' AND `list_id` = 'race';
5381 #IfRow2D list_options list_id race title Larsen Bay
5382 UPDATE `list_options` SET `notes` = '1997-6' WHERE `title` = 'Larsen Bay' AND `list_id` = 'race';
5385 #IfNotRow2Dx2 list_options list_id race option_id las_vegas title Las Vegas
5386 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','las_vegas','Las Vegas','4180', '0',' 1424-1', 0);
5389 #IfRow2D list_options list_id race option_id las_vegas
5390 UPDATE `list_options` SET `notes` = '1424-1' WHERE `option_id` = 'las_vegas' AND `list_id` = 'race';
5393 #IfRow2D list_options list_id race title Las Vegas
5394 UPDATE `list_options` SET `notes` = '1424-1' WHERE `title` = 'Las Vegas' AND `list_id` = 'race';
5397 #IfNotRow2Dx2 list_options list_id race option_id lassik title Lassik
5398 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lassik','Lassik','4190', '0',' 1323-5', 0);
5401 #IfRow2D list_options list_id race option_id lassik
5402 UPDATE `list_options` SET `notes` = '1323-5' WHERE `option_id` = 'lassik' AND `list_id` = 'race';
5405 #IfRow2D list_options list_id race title Lassik
5406 UPDATE `list_options` SET `notes` = '1323-5' WHERE `title` = 'Lassik' AND `list_id` = 'race';
5409 #IfNotRow2Dx2 list_options list_id race option_id lebanese title Lebanese
5410 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lebanese','Lebanese','4200', '0',' 2123-8', 0);
5413 #IfRow2D list_options list_id race option_id lebanese
5414 UPDATE `list_options` SET `notes` = '2123-8' WHERE `option_id` = 'lebanese' AND `list_id` = 'race';
5417 #IfRow2D list_options list_id race title Lebanese
5418 UPDATE `list_options` SET `notes` = '2123-8' WHERE `title` = 'Lebanese' AND `list_id` = 'race';
5421 #IfNotRow2Dx2 list_options list_id race option_id leech_lake title Leech Lake
5422 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','leech_lake','Leech Lake','4210', '0',' 1136-1', 0);
5425 #IfRow2D list_options list_id race option_id leech_lake
5426 UPDATE `list_options` SET `notes` = '1136-1' WHERE `option_id` = 'leech_lake' AND `list_id` = 'race';
5429 #IfRow2D list_options list_id race title Leech Lake
5430 UPDATE `list_options` SET `notes` = '1136-1' WHERE `title` = 'Leech Lake' AND `list_id` = 'race';
5433 #IfNotRow2Dx2 list_options list_id race option_id lenni-lenape title Lenni-Lenape
5434 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lenni-lenape','Lenni-Lenape','4220', '0',' 1216-1', 0);
5437 #IfRow2D list_options list_id race option_id lenni-lenape
5438 UPDATE `list_options` SET `notes` = '1216-1' WHERE `option_id` = 'lenni-lenape' AND `list_id` = 'race';
5441 #IfRow2D list_options list_id race title Lenni-Lenape
5442 UPDATE `list_options` SET `notes` = '1216-1' WHERE `title` = 'Lenni-Lenape' AND `list_id` = 'race';
5445 #IfNotRow2Dx2 list_options list_id race option_id levelock title Levelock
5446 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','levelock','Levelock','4230', '0',' 1929-9', 0);
5449 #IfRow2D list_options list_id race option_id levelock
5450 UPDATE `list_options` SET `notes` = '1929-9' WHERE `option_id` = 'levelock' AND `list_id` = 'race';
5453 #IfRow2D list_options list_id race title Levelock
5454 UPDATE `list_options` SET `notes` = '1929-9' WHERE `title` = 'Levelock' AND `list_id` = 'race';
5457 #IfNotRow2Dx2 list_options list_id race option_id liberian title Liberian
5458 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','liberian','Liberian','4240', '0',' 2063-6', 0);
5461 #IfRow2D list_options list_id race option_id liberian
5462 UPDATE `list_options` SET `notes` = '2063-6' WHERE `option_id` = 'liberian' AND `list_id` = 'race';
5465 #IfRow2D list_options list_id race title Liberian
5466 UPDATE `list_options` SET `notes` = '2063-6' WHERE `title` = 'Liberian' AND `list_id` = 'race';
5469 #IfNotRow2Dx2 list_options list_id race option_id lime title Lime
5470 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lime','Lime','4250', '0',' 1778-0', 0);
5473 #IfRow2D list_options list_id race option_id lime
5474 UPDATE `list_options` SET `notes` = '1778-0' WHERE `option_id` = 'lime' AND `list_id` = 'race';
5477 #IfRow2D list_options list_id race title Lime
5478 UPDATE `list_options` SET `notes` = '1778-0' WHERE `title` = 'Lime' AND `list_id` = 'race';
5481 #IfNotRow2Dx2 list_options list_id race option_id lipan_apache title Lipan Apache
5482 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lipan_apache','Lipan Apache','4260', '0',' 1014-0', 0);
5485 #IfRow2D list_options list_id race option_id lipan_apache
5486 UPDATE `list_options` SET `notes` = '1014-0' WHERE `option_id` = 'lipan_apache' AND `list_id` = 'race';
5489 #IfRow2D list_options list_id race title Lipan Apache
5490 UPDATE `list_options` SET `notes` = '1014-0' WHERE `title` = 'Lipan Apache' AND `list_id` = 'race';
5493 #IfNotRow2Dx2 list_options list_id race option_id little_shell_chippewa title Little Shell Chippewa
5494 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','little_shell_chippewa','Little Shell Chippewa','4270', '0',' 1137-9', 0);
5497 #IfRow2D list_options list_id race option_id little_shell_chippewa
5498 UPDATE `list_options` SET `notes` = '1137-9' WHERE `option_id` = 'little_shell_chippewa' AND `list_id` = 'race';
5501 #IfRow2D list_options list_id race title Little Shell Chippewa
5502 UPDATE `list_options` SET `notes` = '1137-9' WHERE `title` = 'Little Shell Chippewa' AND `list_id` = 'race';
5505 #IfNotRow2Dx2 list_options list_id race option_id lone_pine title Lone Pine
5506 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lone_pine','Lone Pine','4280', '0',' 1425-8', 0);
5509 #IfRow2D list_options list_id race option_id lone_pine
5510 UPDATE `list_options` SET `notes` = '1425-8' WHERE `option_id` = 'lone_pine' AND `list_id` = 'race';
5513 #IfRow2D list_options list_id race title Lone Pine
5514 UPDATE `list_options` SET `notes` = '1425-8' WHERE `title` = 'Lone Pine' AND `list_id` = 'race';
5517 #IfNotRow2Dx2 list_options list_id race option_id long_island title Long Island
5518 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','long_island','Long Island','4290', '0',' 1325-0', 0);
5521 #IfRow2D list_options list_id race option_id long_island
5522 UPDATE `list_options` SET `notes` = '1325-0' WHERE `option_id` = 'long_island' AND `list_id` = 'race';
5525 #IfRow2D list_options list_id race title Long Island
5526 UPDATE `list_options` SET `notes` = '1325-0' WHERE `title` = 'Long Island' AND `list_id` = 'race';
5529 #IfNotRow2Dx2 list_options list_id race option_id los_coyotes title Los Coyotes
5530 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','los_coyotes','Los Coyotes','4300', '0',' 1048-8', 0);
5533 #IfRow2D list_options list_id race option_id los_coyotes
5534 UPDATE `list_options` SET `notes` = '1048-8' WHERE `option_id` = 'los_coyotes' AND `list_id` = 'race';
5537 #IfRow2D list_options list_id race title Los Coyotes
5538 UPDATE `list_options` SET `notes` = '1048-8' WHERE `title` = 'Los Coyotes' AND `list_id` = 'race';
5541 #IfNotRow2Dx2 list_options list_id race option_id lovelock title Lovelock
5542 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lovelock','Lovelock','4310', '0',' 1426-6', 0);
5545 #IfRow2D list_options list_id race option_id lovelock
5546 UPDATE `list_options` SET `notes` = '1426-6' WHERE `option_id` = 'lovelock' AND `list_id` = 'race';
5549 #IfRow2D list_options list_id race title Lovelock
5550 UPDATE `list_options` SET `notes` = '1426-6' WHERE `title` = 'Lovelock' AND `list_id` = 'race';
5553 #IfNotRow2Dx2 list_options list_id race option_id lower_brule_sioux title Lower Brule Sioux
5554 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_brule_sioux','Lower Brule Sioux','4320', '0',' 1618-8', 0);
5557 #IfRow2D list_options list_id race option_id lower_brule_sioux
5558 UPDATE `list_options` SET `notes` = '1618-8' WHERE `option_id` = 'lower_brule_sioux' AND `list_id` = 'race';
5561 #IfRow2D list_options list_id race title Lower Brule Sioux
5562 UPDATE `list_options` SET `notes` = '1618-8' WHERE `title` = 'Lower Brule Sioux' AND `list_id` = 'race';
5565 #IfNotRow2Dx2 list_options list_id race option_id lower_elwha title Lower Elwha
5566 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_elwha','Lower Elwha','4330', '0',' 1314-4', 0);
5569 #IfRow2D list_options list_id race option_id lower_elwha
5570 UPDATE `list_options` SET `notes` = '1314-4' WHERE `option_id` = 'lower_elwha' AND `list_id` = 'race';
5573 #IfRow2D list_options list_id race title Lower Elwha
5574 UPDATE `list_options` SET `notes` = '1314-4' WHERE `title` = 'Lower Elwha' AND `list_id` = 'race';
5577 #IfNotRow2Dx2 list_options list_id race option_id lower_kalskag title Lower Kalskag
5578 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_kalskag','Lower Kalskag','4340', '0',' 1930-7', 0);
5581 #IfRow2D list_options list_id race option_id lower_kalskag
5582 UPDATE `list_options` SET `notes` = '1930-7' WHERE `option_id` = 'lower_kalskag' AND `list_id` = 'race';
5585 #IfRow2D list_options list_id race title Lower Kalskag
5586 UPDATE `list_options` SET `notes` = '1930-7' WHERE `title` = 'Lower Kalskag' AND `list_id` = 'race';
5589 #IfNotRow2Dx2 list_options list_id race option_id lower_muscogee title Lower Muscogee
5590 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_muscogee','Lower Muscogee','4350', '0',' 1199-9', 0);
5593 #IfRow2D list_options list_id race option_id lower_muscogee
5594 UPDATE `list_options` SET `notes` = '1199-9' WHERE `option_id` = 'lower_muscogee' AND `list_id` = 'race';
5597 #IfRow2D list_options list_id race title Lower Muscogee
5598 UPDATE `list_options` SET `notes` = '1199-9' WHERE `title` = 'Lower Muscogee' AND `list_id` = 'race';
5601 #IfNotRow2Dx2 list_options list_id race option_id lower_sioux title Lower Sioux
5602 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_sioux','Lower Sioux','4360', '0',' 1619-6', 0);
5605 #IfRow2D list_options list_id race option_id lower_sioux
5606 UPDATE `list_options` SET `notes` = '1619-6' WHERE `option_id` = 'lower_sioux' AND `list_id` = 'race';
5609 #IfRow2D list_options list_id race title Lower Sioux
5610 UPDATE `list_options` SET `notes` = '1619-6' WHERE `title` = 'Lower Sioux' AND `list_id` = 'race';
5613 #IfNotRow2Dx2 list_options list_id race option_id lower_skagit title Lower Skagit
5614 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lower_skagit','Lower Skagit','4370', '0',' 1521-4', 0);
5617 #IfRow2D list_options list_id race option_id lower_skagit
5618 UPDATE `list_options` SET `notes` = '1521-4' WHERE `option_id` = 'lower_skagit' AND `list_id` = 'race';
5621 #IfRow2D list_options list_id race title Lower Skagit
5622 UPDATE `list_options` SET `notes` = '1521-4' WHERE `title` = 'Lower Skagit' AND `list_id` = 'race';
5625 #IfNotRow2Dx2 list_options list_id race option_id luiseno title Luiseno
5626 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','luiseno','Luiseno','4380', '0',' 1331-8', 0);
5629 #IfRow2D list_options list_id race option_id luiseno
5630 UPDATE `list_options` SET `notes` = '1331-8' WHERE `option_id` = 'luiseno' AND `list_id` = 'race';
5633 #IfRow2D list_options list_id race title Luiseno
5634 UPDATE `list_options` SET `notes` = '1331-8' WHERE `title` = 'Luiseno' AND `list_id` = 'race';
5637 #IfNotRow2Dx2 list_options list_id race option_id lumbee title Lumbee
5638 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lumbee','Lumbee','4390', '0',' 1340-9', 0);
5641 #IfRow2D list_options list_id race option_id lumbee
5642 UPDATE `list_options` SET `notes` = '1340-9' WHERE `option_id` = 'lumbee' AND `list_id` = 'race';
5645 #IfRow2D list_options list_id race title Lumbee
5646 UPDATE `list_options` SET `notes` = '1340-9' WHERE `title` = 'Lumbee' AND `list_id` = 'race';
5649 #IfNotRow2Dx2 list_options list_id race option_id lummi title Lummi
5650 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','lummi','Lummi','4400', '0',' 1342-5', 0);
5653 #IfRow2D list_options list_id race option_id lummi
5654 UPDATE `list_options` SET `notes` = '1342-5' WHERE `option_id` = 'lummi' AND `list_id` = 'race';
5657 #IfRow2D list_options list_id race title Lummi
5658 UPDATE `list_options` SET `notes` = '1342-5' WHERE `title` = 'Lummi' AND `list_id` = 'race';
5661 #IfNotRow2Dx2 list_options list_id race option_id machis_lower_creek_indian title Machis Lower Creek Indian
5662 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','machis_lower_creek_indian','Machis Lower Creek Indian','4410', '0',' 1200-5', 0);
5665 #IfRow2D list_options list_id race option_id machis_lower_creek_indian
5666 UPDATE `list_options` SET `notes` = '1200-5' WHERE `option_id` = 'machis_lower_creek_indian' AND `list_id` = 'race';
5669 #IfRow2D list_options list_id race title Machis Lower Creek Indian
5670 UPDATE `list_options` SET `notes` = '1200-5' WHERE `title` = 'Machis Lower Creek Indian' AND `list_id` = 'race';
5673 #IfNotRow2Dx2 list_options list_id race option_id madagascar title Madagascar
5674 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','madagascar','Madagascar','4420', '0',' 2052-9', 0);
5677 #IfRow2D list_options list_id race option_id madagascar
5678 UPDATE `list_options` SET `notes` = '2052-9' WHERE `option_id` = 'madagascar' AND `list_id` = 'race';
5681 #IfRow2D list_options list_id race title Madagascar
5682 UPDATE `list_options` SET `notes` = '2052-9' WHERE `title` = 'Madagascar' AND `list_id` = 'race';
5685 #IfNotRow2Dx2 list_options list_id race option_id maidu title Maidu
5686 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','maidu','Maidu','4430', '0',' 1344-1', 0);
5689 #IfRow2D list_options list_id race option_id maidu
5690 UPDATE `list_options` SET `notes` = '1344-1' WHERE `option_id` = 'maidu' AND `list_id` = 'race';
5693 #IfRow2D list_options list_id race title Maidu
5694 UPDATE `list_options` SET `notes` = '1344-1' WHERE `title` = 'Maidu' AND `list_id` = 'race';
5697 #IfNotRow2Dx2 list_options list_id race option_id makah title Makah
5698 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','makah','Makah','4440', '0',' 1348-2', 0);
5701 #IfRow2D list_options list_id race option_id makah
5702 UPDATE `list_options` SET `notes` = '1348-2' WHERE `option_id` = 'makah' AND `list_id` = 'race';
5705 #IfRow2D list_options list_id race title Makah
5706 UPDATE `list_options` SET `notes` = '1348-2' WHERE `title` = 'Makah' AND `list_id` = 'race';
5709 #IfNotRow2Dx2 list_options list_id race option_id malaysian title Malaysian
5710 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','malaysian','Malaysian','4450', '0',' 2042-0', 0);
5713 #IfRow2D list_options list_id race option_id malaysian
5714 UPDATE `list_options` SET `notes` = '2042-0' WHERE `option_id` = 'malaysian' AND `list_id` = 'race';
5717 #IfRow2D list_options list_id race title Malaysian
5718 UPDATE `list_options` SET `notes` = '2042-0' WHERE `title` = 'Malaysian' AND `list_id` = 'race';
5721 #IfNotRow2Dx2 list_options list_id race option_id maldivian title Maldivian
5722 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','maldivian','Maldivian','4460', '0',' 2049-5', 0);
5725 #IfRow2D list_options list_id race option_id maldivian
5726 UPDATE `list_options` SET `notes` = '2049-5' WHERE `option_id` = 'maldivian' AND `list_id` = 'race';
5729 #IfRow2D list_options list_id race title Maldivian
5730 UPDATE `list_options` SET `notes` = '2049-5' WHERE `title` = 'Maldivian' AND `list_id` = 'race';
5733 #IfNotRow2Dx2 list_options list_id race option_id malheur_paiute title Malheur Paiute
5734 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','malheur_paiute','Malheur Paiute','4470', '0',' 1427-4', 0);
5737 #IfRow2D list_options list_id race option_id malheur_paiute
5738 UPDATE `list_options` SET `notes` = '1427-4' WHERE `option_id` = 'malheur_paiute' AND `list_id` = 'race';
5741 #IfRow2D list_options list_id race title Malheur Paiute
5742 UPDATE `list_options` SET `notes` = '1427-4' WHERE `title` = 'Malheur Paiute' AND `list_id` = 'race';
5745 #IfNotRow2Dx2 list_options list_id race option_id maliseet title Maliseet
5746 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','maliseet','Maliseet','4480', '0',' 1350-8', 0);
5749 #IfRow2D list_options list_id race option_id maliseet
5750 UPDATE `list_options` SET `notes` = '1350-8' WHERE `option_id` = 'maliseet' AND `list_id` = 'race';
5753 #IfRow2D list_options list_id race title Maliseet
5754 UPDATE `list_options` SET `notes` = '1350-8' WHERE `title` = 'Maliseet' AND `list_id` = 'race';
5757 #IfNotRow2Dx2 list_options list_id race option_id mandan title Mandan
5758 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mandan','Mandan','4490', '0',' 1352-4', 0);
5761 #IfRow2D list_options list_id race option_id mandan
5762 UPDATE `list_options` SET `notes` = '1352-4' WHERE `option_id` = 'mandan' AND `list_id` = 'race';
5765 #IfRow2D list_options list_id race title Mandan
5766 UPDATE `list_options` SET `notes` = '1352-4' WHERE `title` = 'Mandan' AND `list_id` = 'race';
5769 #IfNotRow2Dx2 list_options list_id race option_id manley_hot_springs title Manley Hot Springs
5770 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','manley_hot_springs','Manley Hot Springs','4500', '0',' 1780-6', 0);
5773 #IfRow2D list_options list_id race option_id manley_hot_springs
5774 UPDATE `list_options` SET `notes` = '1780-6' WHERE `option_id` = 'manley_hot_springs' AND `list_id` = 'race';
5777 #IfRow2D list_options list_id race title Manley Hot Springs
5778 UPDATE `list_options` SET `notes` = '1780-6' WHERE `title` = 'Manley Hot Springs' AND `list_id` = 'race';
5781 #IfNotRow2Dx2 list_options list_id race option_id manokotak title Manokotak
5782 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','manokotak','Manokotak','4510', '0',' 1931-5', 0);
5785 #IfRow2D list_options list_id race option_id manokotak
5786 UPDATE `list_options` SET `notes` = '1931-5' WHERE `option_id` = 'manokotak' AND `list_id` = 'race';
5789 #IfRow2D list_options list_id race title Manokotak
5790 UPDATE `list_options` SET `notes` = '1931-5' WHERE `title` = 'Manokotak' AND `list_id` = 'race';
5793 #IfNotRow2Dx2 list_options list_id race option_id manzanita title Manzanita
5794 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','manzanita','Manzanita','4520', '0',' 1227-8', 0);
5797 #IfRow2D list_options list_id race option_id manzanita
5798 UPDATE `list_options` SET `notes` = '1227-8' WHERE `option_id` = 'manzanita' AND `list_id` = 'race';
5801 #IfRow2D list_options list_id race title Manzanita
5802 UPDATE `list_options` SET `notes` = '1227-8' WHERE `title` = 'Manzanita' AND `list_id` = 'race';
5805 #IfNotRow2Dx2 list_options list_id race option_id mariana_islander title Mariana Islander
5806 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mariana_islander','Mariana Islander','4530', '0',' 2089-1', 0);
5809 #IfRow2D list_options list_id race option_id mariana_islander
5810 UPDATE `list_options` SET `notes` = '2089-1' WHERE `option_id` = 'mariana_islander' AND `list_id` = 'race';
5813 #IfRow2D list_options list_id race title Mariana Islander
5814 UPDATE `list_options` SET `notes` = '2089-1' WHERE `title` = 'Mariana Islander' AND `list_id` = 'race';
5817 #IfNotRow2Dx2 list_options list_id race option_id maricopa title Maricopa
5818 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','maricopa','Maricopa','4540', '0',' 1728-5', 0);
5821 #IfRow2D list_options list_id race option_id maricopa
5822 UPDATE `list_options` SET `notes` = '1728-5' WHERE `option_id` = 'maricopa' AND `list_id` = 'race';
5825 #IfRow2D list_options list_id race title Maricopa
5826 UPDATE `list_options` SET `notes` = '1728-5' WHERE `title` = 'Maricopa' AND `list_id` = 'race';
5829 #IfNotRow2Dx2 list_options list_id race option_id marshall title Marshall
5830 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','marshall','Marshall','4550', '0',' 1932-3', 0);
5833 #IfRow2D list_options list_id race option_id marshall
5834 UPDATE `list_options` SET `notes` = '1932-3' WHERE `option_id` = 'marshall' AND `list_id` = 'race';
5837 #IfRow2D list_options list_id race title Marshall
5838 UPDATE `list_options` SET `notes` = '1932-3' WHERE `title` = 'Marshall' AND `list_id` = 'race';
5841 #IfNotRow2Dx2 list_options list_id race option_id marshallese title Marshallese
5842 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','marshallese','Marshallese','4560', '0',' 2090-9', 0);
5845 #IfRow2D list_options list_id race option_id marshallese
5846 UPDATE `list_options` SET `notes` = '2090-9' WHERE `option_id` = 'marshallese' AND `list_id` = 'race';
5849 #IfRow2D list_options list_id race title Marshallese
5850 UPDATE `list_options` SET `notes` = '2090-9' WHERE `title` = 'Marshallese' AND `list_id` = 'race';
5853 #IfNotRow2Dx2 list_options list_id race option_id marshantucket_pequot title Marshantucket Pequot
5854 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','marshantucket_pequot','Marshantucket Pequot','4570', '0',' 1454-8', 0);
5857 #IfRow2D list_options list_id race option_id marshantucket_pequot
5858 UPDATE `list_options` SET `notes` = '1454-8' WHERE `option_id` = 'marshantucket_pequot' AND `list_id` = 'race';
5861 #IfRow2D list_options list_id race title Marshantucket Pequot
5862 UPDATE `list_options` SET `notes` = '1454-8' WHERE `title` = 'Marshantucket Pequot' AND `list_id` = 'race';
5865 #IfNotRow2D list_options list_id race option_id marys_igloo
5866 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','marys_igloo',"Mary's Igloo",'4580', '0',' 1889-5', 0);
5869 #IfRow2D list_options list_id race option_id marys_igloo
5870 UPDATE `list_options` SET `notes` = '1889-5' WHERE `option_id` = 'marys_igloo' AND `list_id` = 'race';
5873 #IfNotRow2Dx2 list_options list_id race option_id mashpee_wampanoag title Mashpee Wampanoag
5874 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mashpee_wampanoag','Mashpee Wampanoag','4590', '0',' 1681-6', 0);
5877 #IfRow2D list_options list_id race option_id mashpee_wampanoag
5878 UPDATE `list_options` SET `notes` = '1681-6' WHERE `option_id` = 'mashpee_wampanoag' AND `list_id` = 'race';
5881 #IfRow2D list_options list_id race title Mashpee Wampanoag
5882 UPDATE `list_options` SET `notes` = '1681-6' WHERE `title` = 'Mashpee Wampanoag' AND `list_id` = 'race';
5885 #IfNotRow2Dx2 list_options list_id race option_id matinecock title Matinecock
5886 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','matinecock','Matinecock','4600', '0',' 1326-8', 0);
5889 #IfRow2D list_options list_id race option_id matinecock
5890 UPDATE `list_options` SET `notes` = '1326-8' WHERE `option_id` = 'matinecock' AND `list_id` = 'race';
5893 #IfRow2D list_options list_id race title Matinecock
5894 UPDATE `list_options` SET `notes` = '1326-8' WHERE `title` = 'Matinecock' AND `list_id` = 'race';
5897 #IfNotRow2Dx2 list_options list_id race option_id mattaponi title Mattaponi
5898 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mattaponi','Mattaponi','4610', '0',' 1354-0', 0);
5901 #IfRow2D list_options list_id race option_id mattaponi
5902 UPDATE `list_options` SET `notes` = '1354-0' WHERE `option_id` = 'mattaponi' AND `list_id` = 'race';
5905 #IfRow2D list_options list_id race title Mattaponi
5906 UPDATE `list_options` SET `notes` = '1354-0' WHERE `title` = 'Mattaponi' AND `list_id` = 'race';
5909 #IfNotRow2Dx2 list_options list_id race option_id mattole title Mattole
5910 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mattole','Mattole','4620', '0',' 1060-3', 0);
5913 #IfRow2D list_options list_id race option_id mattole
5914 UPDATE `list_options` SET `notes` = '1060-3' WHERE `option_id` = 'mattole' AND `list_id` = 'race';
5917 #IfRow2D list_options list_id race title Mattole
5918 UPDATE `list_options` SET `notes` = '1060-3' WHERE `title` = 'Mattole' AND `list_id` = 'race';
5921 #IfNotRow2Dx2 list_options list_id race option_id mauneluk_inupiat title Mauneluk Inupiat
5922 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mauneluk_inupiat','Mauneluk Inupiat','4630', '0',' 1870-5', 0);
5925 #IfRow2D list_options list_id race option_id mauneluk_inupiat
5926 UPDATE `list_options` SET `notes` = '1870-5' WHERE `option_id` = 'mauneluk_inupiat' AND `list_id` = 'race';
5929 #IfRow2D list_options list_id race title Mauneluk Inupiat
5930 UPDATE `list_options` SET `notes` = '1870-5' WHERE `title` = 'Mauneluk Inupiat' AND `list_id` = 'race';
5933 #IfNotRow2Dx2 list_options list_id race option_id mcgrath title Mcgrath
5934 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mcgrath','Mcgrath','4640', '0',' 1779-8', 0);
5937 #IfRow2D list_options list_id race option_id mcgrath
5938 UPDATE `list_options` SET `notes` = '1779-8' WHERE `option_id` = 'mcgrath' AND `list_id` = 'race';
5941 #IfRow2D list_options list_id race title Mcgrath
5942 UPDATE `list_options` SET `notes` = '1779-8' WHERE `title` = 'Mcgrath' AND `list_id` = 'race';
5945 #IfNotRow2Dx2 list_options list_id race option_id mdewakanton_sioux title Mdewakanton Sioux
5946 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mdewakanton_sioux','Mdewakanton Sioux','4650', '0',' 1620-4', 0);
5949 #IfRow2D list_options list_id race option_id mdewakanton_sioux
5950 UPDATE `list_options` SET `notes` = '1620-4' WHERE `option_id` = 'mdewakanton_sioux' AND `list_id` = 'race';
5953 #IfRow2D list_options list_id race title Mdewakanton Sioux
5954 UPDATE `list_options` SET `notes` = '1620-4' WHERE `title` = 'Mdewakanton Sioux' AND `list_id` = 'race';
5957 #IfNotRow2Dx2 list_options list_id race option_id mekoryuk title Mekoryuk
5958 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mekoryuk','Mekoryuk','4660', '0',' 1933-1', 0);
5961 #IfRow2D list_options list_id race option_id mekoryuk
5962 UPDATE `list_options` SET `notes` = '1933-1' WHERE `option_id` = 'mekoryuk' AND `list_id` = 'race';
5965 #IfRow2D list_options list_id race title Mekoryuk
5966 UPDATE `list_options` SET `notes` = '1933-1' WHERE `title` = 'Mekoryuk' AND `list_id` = 'race';
5969 #IfNotRow2Dx2 list_options list_id race option_id melanesian title Melanesian
5970 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','melanesian','Melanesian','4670', '0',' 2100-6', 0);
5973 #IfRow2D list_options list_id race option_id melanesian
5974 UPDATE `list_options` SET `notes` = '2100-6' WHERE `option_id` = 'melanesian' AND `list_id` = 'race';
5977 #IfRow2D list_options list_id race title Melanesian
5978 UPDATE `list_options` SET `notes` = '2100-6' WHERE `title` = 'Melanesian' AND `list_id` = 'race';
5981 #IfNotRow2Dx2 list_options list_id race option_id menominee title Menominee
5982 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','menominee','Menominee','4680', '0',' 1356-5', 0);
5985 #IfRow2D list_options list_id race option_id menominee
5986 UPDATE `list_options` SET `notes` = '1356-5' WHERE `option_id` = 'menominee' AND `list_id` = 'race';
5989 #IfRow2D list_options list_id race title Menominee
5990 UPDATE `list_options` SET `notes` = '1356-5' WHERE `title` = 'Menominee' AND `list_id` = 'race';
5993 #IfNotRow2Dx2 list_options list_id race option_id mentasta_lake title Mentasta Lake
5994 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mentasta_lake','Mentasta Lake','4690', '0',' 1781-4', 0);
5997 #IfRow2D list_options list_id race option_id mentasta_lake
5998 UPDATE `list_options` SET `notes` = '1781-4' WHERE `option_id` = 'mentasta_lake' AND `list_id` = 'race';
6001 #IfRow2D list_options list_id race title Mentasta Lake
6002 UPDATE `list_options` SET `notes` = '1781-4' WHERE `title` = 'Mentasta Lake' AND `list_id` = 'race';
6005 #IfNotRow2Dx2 list_options list_id race option_id mesa_grande title Mesa Grande
6006 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mesa_grande','Mesa Grande','4700', '0',' 1228-6', 0);
6009 #IfRow2D list_options list_id race option_id mesa_grande
6010 UPDATE `list_options` SET `notes` = '1228-6' WHERE `option_id` = 'mesa_grande' AND `list_id` = 'race';
6013 #IfRow2D list_options list_id race title Mesa Grande
6014 UPDATE `list_options` SET `notes` = '1228-6' WHERE `title` = 'Mesa Grande' AND `list_id` = 'race';
6017 #IfNotRow2Dx2 list_options list_id race option_id mescalero_apache title Mescalero Apache
6018 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mescalero_apache','Mescalero Apache','4710', '0',' 1015-7', 0);
6021 #IfRow2D list_options list_id race option_id mescalero_apache
6022 UPDATE `list_options` SET `notes` = '1015-7' WHERE `option_id` = 'mescalero_apache' AND `list_id` = 'race';
6025 #IfRow2D list_options list_id race title Mescalero Apache
6026 UPDATE `list_options` SET `notes` = '1015-7' WHERE `title` = 'Mescalero Apache' AND `list_id` = 'race';
6029 #IfNotRow2Dx2 list_options list_id race option_id metlakatla title Metlakatla
6030 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','metlakatla','Metlakatla','4720', '0',' 1838-2', 0);
6033 #IfRow2D list_options list_id race option_id metlakatla
6034 UPDATE `list_options` SET `notes` = '1838-2' WHERE `option_id` = 'metlakatla' AND `list_id` = 'race';
6037 #IfRow2D list_options list_id race title Metlakatla
6038 UPDATE `list_options` SET `notes` = '1838-2' WHERE `title` = 'Metlakatla' AND `list_id` = 'race';
6041 #IfNotRow2Dx2 list_options list_id race option_id mexican_american_indian title Mexican American Indian
6042 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mexican_american_indian','Mexican American Indian','4730', '0',' 1072-8', 0);
6045 #IfRow2D list_options list_id race option_id mexican_american_indian
6046 UPDATE `list_options` SET `notes` = '1072-8' WHERE `option_id` = 'mexican_american_indian' AND `list_id` = 'race';
6049 #IfRow2D list_options list_id race title Mexican American Indian
6050 UPDATE `list_options` SET `notes` = '1072-8' WHERE `title` = 'Mexican American Indian' AND `list_id` = 'race';
6053 #IfNotRow2Dx2 list_options list_id race option_id miami title Miami
6054 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','miami','Miami','4740', '0',' 1358-1', 0);
6057 #IfRow2D list_options list_id race option_id miami
6058 UPDATE `list_options` SET `notes` = '1358-1' WHERE `option_id` = 'miami' AND `list_id` = 'race';
6061 #IfRow2D list_options list_id race title Miami
6062 UPDATE `list_options` SET `notes` = '1358-1' WHERE `title` = 'Miami' AND `list_id` = 'race';
6065 #IfNotRow2Dx2 list_options list_id race option_id miccosukee title Miccosukee
6066 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','miccosukee','Miccosukee','4750', '0',' 1363-1', 0);
6069 #IfRow2D list_options list_id race option_id miccosukee
6070 UPDATE `list_options` SET `notes` = '1363-1' WHERE `option_id` = 'miccosukee' AND `list_id` = 'race';
6073 #IfRow2D list_options list_id race title Miccosukee
6074 UPDATE `list_options` SET `notes` = '1363-1' WHERE `title` = 'Miccosukee' AND `list_id` = 'race';
6077 #IfNotRow2Dx2 list_options list_id race option_id michigan_ottawa title Michigan Ottawa
6078 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','michigan_ottawa','Michigan Ottawa','4760', '0',' 1413-4', 0);
6081 #IfRow2D list_options list_id race option_id michigan_ottawa
6082 UPDATE `list_options` SET `notes` = '1413-4' WHERE `option_id` = 'michigan_ottawa' AND `list_id` = 'race';
6085 #IfRow2D list_options list_id race title Michigan Ottawa
6086 UPDATE `list_options` SET `notes` = '1413-4' WHERE `title` = 'Michigan Ottawa' AND `list_id` = 'race';
6089 #IfNotRow2Dx2 list_options list_id race option_id micmac title Micmac
6090 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','micmac','Micmac','4770', '0',' 1365-6', 0);
6093 #IfRow2D list_options list_id race option_id micmac
6094 UPDATE `list_options` SET `notes` = '1365-6' WHERE `option_id` = 'micmac' AND `list_id` = 'race';
6097 #IfRow2D list_options list_id race title Micmac
6098 UPDATE `list_options` SET `notes` = '1365-6' WHERE `title` = 'Micmac' AND `list_id` = 'race';
6101 #IfNotRow2Dx2 list_options list_id race option_id micronesian title Micronesian
6102 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','micronesian','Micronesian','4780', '0',' 2085-9', 0);
6105 #IfRow2D list_options list_id race option_id micronesian
6106 UPDATE `list_options` SET `notes` = '2085-9' WHERE `option_id` = 'micronesian' AND `list_id` = 'race';
6109 #IfRow2D list_options list_id race title Micronesian
6110 UPDATE `list_options` SET `notes` = '2085-9' WHERE `title` = 'Micronesian' AND `list_id` = 'race';
6113 #IfNotRow2Dx2 list_options list_id race option_id middle_eastern_north_african title Middle Eastern or North African
6114 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','middle_eastern_north_african','Middle Eastern or North African','4790', '0',' 2118-8', 0);
6117 #IfRow2D list_options list_id race option_id middle_eastern_north_african
6118 UPDATE `list_options` SET `notes` = '2118-8' WHERE `option_id` = 'middle_eastern_north_african' AND `list_id` = 'race';
6121 #IfRow2D list_options list_id race title Middle Eastern or North African
6122 UPDATE `list_options` SET `notes` = '2118-8' WHERE `title` = 'Middle Eastern or North African' AND `list_id` = 'race';
6125 #IfNotRow2Dx2 list_options list_id race option_id mille_lacs title Mille Lacs
6126 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mille_lacs','Mille Lacs','4800', '0',' 1138-7', 0);
6129 #IfRow2D list_options list_id race option_id mille_lacs
6130 UPDATE `list_options` SET `notes` = '1138-7' WHERE `option_id` = 'mille_lacs' AND `list_id` = 'race';
6133 #IfRow2D list_options list_id race title Mille Lacs
6134 UPDATE `list_options` SET `notes` = '1138-7' WHERE `title` = 'Mille Lacs' AND `list_id` = 'race';
6137 #IfNotRow2Dx2 list_options list_id race option_id miniconjou title Miniconjou
6138 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','miniconjou','Miniconjou','4810', '0',' 1621-2', 0);
6141 #IfRow2D list_options list_id race option_id miniconjou
6142 UPDATE `list_options` SET `notes` = '1621-2' WHERE `option_id` = 'miniconjou' AND `list_id` = 'race';
6145 #IfRow2D list_options list_id race title Miniconjou
6146 UPDATE `list_options` SET `notes` = '1621-2' WHERE `title` = 'Miniconjou' AND `list_id` = 'race';
6149 #IfNotRow2Dx2 list_options list_id race option_id minnesota_chippewa title Minnesota Chippewa
6150 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','minnesota_chippewa','Minnesota Chippewa','4820', '0',' 1139-5', 0);
6153 #IfRow2D list_options list_id race option_id minnesota_chippewa
6154 UPDATE `list_options` SET `notes` = '1139-5' WHERE `option_id` = 'minnesota_chippewa' AND `list_id` = 'race';
6157 #IfRow2D list_options list_id race title Minnesota Chippewa
6158 UPDATE `list_options` SET `notes` = '1139-5' WHERE `title` = 'Minnesota Chippewa' AND `list_id` = 'race';
6161 #IfNotRow2Dx2 list_options list_id race option_id minto title Minto
6162 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','minto','Minto','4830', '0',' 1782-2', 0);
6165 #IfRow2D list_options list_id race option_id minto
6166 UPDATE `list_options` SET `notes` = '1782-2' WHERE `option_id` = 'minto' AND `list_id` = 'race';
6169 #IfRow2D list_options list_id race title Minto
6170 UPDATE `list_options` SET `notes` = '1782-2' WHERE `title` = 'Minto' AND `list_id` = 'race';
6173 #IfNotRow2Dx2 list_options list_id race option_id mission_indians title Mission Indians
6174 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mission_indians','Mission Indians','4840', '0',' 1368-0', 0);
6177 #IfRow2D list_options list_id race option_id mission_indians
6178 UPDATE `list_options` SET `notes` = '1368-0' WHERE `option_id` = 'mission_indians' AND `list_id` = 'race';
6181 #IfRow2D list_options list_id race title Mission Indians
6182 UPDATE `list_options` SET `notes` = '1368-0' WHERE `title` = 'Mission Indians' AND `list_id` = 'race';
6185 #IfNotRow2Dx2 list_options list_id race option_id mississippi_choctaw title Mississippi Choctaw
6186 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mississippi_choctaw','Mississippi Choctaw','4850', '0',' 1158-5', 0);
6189 #IfRow2D list_options list_id race option_id mississippi_choctaw
6190 UPDATE `list_options` SET `notes` = '1158-5' WHERE `option_id` = 'mississippi_choctaw' AND `list_id` = 'race';
6193 #IfRow2D list_options list_id race title Mississippi Choctaw
6194 UPDATE `list_options` SET `notes` = '1158-5' WHERE `title` = 'Mississippi Choctaw' AND `list_id` = 'race';
6197 #IfNotRow2Dx2 list_options list_id race option_id missouri_sac_and_fox title Missouri Sac and Fox
6198 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','missouri_sac_and_fox','Missouri Sac and Fox','4860', '0',' 1553-7', 0);
6201 #IfRow2D list_options list_id race option_id missouri_sac_and_fox
6202 UPDATE `list_options` SET `notes` = '1553-7' WHERE `option_id` = 'missouri_sac_and_fox' AND `list_id` = 'race';
6205 #IfRow2D list_options list_id race title Missouri Sac and Fox
6206 UPDATE `list_options` SET `notes` = '1553-7' WHERE `title` = 'Missouri Sac and Fox' AND `list_id` = 'race';
6209 #IfNotRow2Dx2 list_options list_id race option_id miwok title Miwok
6210 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','miwok','Miwok','4870', '0',' 1370-6', 0);
6213 #IfRow2D list_options list_id race option_id miwok
6214 UPDATE `list_options` SET `notes` = '1370-6' WHERE `option_id` = 'miwok' AND `list_id` = 'race';
6217 #IfRow2D list_options list_id race title Miwok
6218 UPDATE `list_options` SET `notes` = '1370-6' WHERE `title` = 'Miwok' AND `list_id` = 'race';
6221 #IfNotRow2Dx2 list_options list_id race option_id moapa title Moapa
6222 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','moapa','Moapa','4880', '0',' 1428-2', 0);
6225 #IfRow2D list_options list_id race option_id moapa
6226 UPDATE `list_options` SET `notes` = '1428-2' WHERE `option_id` = 'moapa' AND `list_id` = 'race';
6229 #IfRow2D list_options list_id race title Moapa
6230 UPDATE `list_options` SET `notes` = '1428-2' WHERE `title` = 'Moapa' AND `list_id` = 'race';
6233 #IfNotRow2Dx2 list_options list_id race option_id modoc title Modoc
6234 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','modoc','Modoc','4890', '0',' 1372-2', 0);
6237 #IfRow2D list_options list_id race option_id modoc
6238 UPDATE `list_options` SET `notes` = '1372-2' WHERE `option_id` = 'modoc' AND `list_id` = 'race';
6241 #IfRow2D list_options list_id race title Modoc
6242 UPDATE `list_options` SET `notes` = '1372-2' WHERE `title` = 'Modoc' AND `list_id` = 'race';
6245 #IfNotRow2Dx2 list_options list_id race option_id mohave title Mohave
6246 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mohave','Mohave','4900', '0',' 1729-3', 0);
6249 #IfRow2D list_options list_id race option_id mohave
6250 UPDATE `list_options` SET `notes` = '1729-3' WHERE `option_id` = 'mohave' AND `list_id` = 'race';
6253 #IfRow2D list_options list_id race title Mohave
6254 UPDATE `list_options` SET `notes` = '1729-3' WHERE `title` = 'Mohave' AND `list_id` = 'race';
6257 #IfNotRow2Dx2 list_options list_id race option_id mohawk title Mohawk
6258 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mohawk','Mohawk','4910', '0',' 1287-2', 0);
6261 #IfRow2D list_options list_id race option_id mohawk
6262 UPDATE `list_options` SET `notes` = '1287-2' WHERE `option_id` = 'mohawk' AND `list_id` = 'race';
6265 #IfRow2D list_options list_id race title Mohawk
6266 UPDATE `list_options` SET `notes` = '1287-2' WHERE `title` = 'Mohawk' AND `list_id` = 'race';
6269 #IfNotRow2Dx2 list_options list_id race option_id mohegan title Mohegan
6270 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mohegan','Mohegan','4920', '0',' 1374-8', 0);
6273 #IfRow2D list_options list_id race option_id mohegan
6274 UPDATE `list_options` SET `notes` = '1374-8' WHERE `option_id` = 'mohegan' AND `list_id` = 'race';
6277 #IfRow2D list_options list_id race title Mohegan
6278 UPDATE `list_options` SET `notes` = '1374-8' WHERE `title` = 'Mohegan' AND `list_id` = 'race';
6281 #IfNotRow2Dx2 list_options list_id race option_id molala title Molala
6282 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','molala','Molala','4930', '0',' 1396-1', 0);
6285 #IfRow2D list_options list_id race option_id molala
6286 UPDATE `list_options` SET `notes` = '1396-1' WHERE `option_id` = 'molala' AND `list_id` = 'race';
6289 #IfRow2D list_options list_id race title Molala
6290 UPDATE `list_options` SET `notes` = '1396-1' WHERE `title` = 'Molala' AND `list_id` = 'race';
6293 #IfNotRow2Dx2 list_options list_id race option_id mono title Mono
6294 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mono','Mono','4940', '0',' 1376-3', 0);
6297 #IfRow2D list_options list_id race option_id mono
6298 UPDATE `list_options` SET `notes` = '1376-3' WHERE `option_id` = 'mono' AND `list_id` = 'race';
6301 #IfRow2D list_options list_id race title Mono
6302 UPDATE `list_options` SET `notes` = '1376-3' WHERE `title` = 'Mono' AND `list_id` = 'race';
6305 #IfNotRow2Dx2 list_options list_id race option_id montauk title Montauk
6306 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','montauk','Montauk','4950', '0',' 1327-6', 0);
6309 #IfRow2D list_options list_id race option_id montauk
6310 UPDATE `list_options` SET `notes` = '1327-6' WHERE `option_id` = 'montauk' AND `list_id` = 'race';
6313 #IfRow2D list_options list_id race title Montauk
6314 UPDATE `list_options` SET `notes` = '1327-6' WHERE `title` = 'Montauk' AND `list_id` = 'race';
6317 #IfNotRow2Dx2 list_options list_id race option_id moor title Moor
6318 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','moor','Moor','4960', '0',' 1237-7', 0);
6321 #IfRow2D list_options list_id race option_id moor
6322 UPDATE `list_options` SET `notes` = '1237-7' WHERE `option_id` = 'moor' AND `list_id` = 'race';
6325 #IfRow2D list_options list_id race title Moor
6326 UPDATE `list_options` SET `notes` = '1237-7' WHERE `title` = 'Moor' AND `list_id` = 'race';
6329 #IfNotRow2Dx2 list_options list_id race option_id morongo title Morongo
6330 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','morongo','Morongo','4970', '0',' 1049-6', 0);
6333 #IfRow2D list_options list_id race option_id morongo
6334 UPDATE `list_options` SET `notes` = '1049-6' WHERE `option_id` = 'morongo' AND `list_id` = 'race';
6337 #IfRow2D list_options list_id race title Morongo
6338 UPDATE `list_options` SET `notes` = '1049-6' WHERE `title` = 'Morongo' AND `list_id` = 'race';
6341 #IfNotRow2Dx2 list_options list_id race option_id mountain_maidu title Mountain Maidu
6342 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mountain_maidu','Mountain Maidu','4980', '0',' 1345-8', 0);
6345 #IfRow2D list_options list_id race option_id mountain_maidu
6346 UPDATE `list_options` SET `notes` = '1345-8' WHERE `option_id` = 'mountain_maidu' AND `list_id` = 'race';
6349 #IfRow2D list_options list_id race title Mountain Maidu
6350 UPDATE `list_options` SET `notes` = '1345-8' WHERE `title` = 'Mountain Maidu' AND `list_id` = 'race';
6353 #IfNotRow2Dx2 list_options list_id race option_id mountain_village title Mountain Village
6354 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mountain_village','Mountain Village','4990', '0',' 1934-9', 0);
6357 #IfRow2D list_options list_id race option_id mountain_village
6358 UPDATE `list_options` SET `notes` = '1934-9' WHERE `option_id` = 'mountain_village' AND `list_id` = 'race';
6361 #IfRow2D list_options list_id race title Mountain Village
6362 UPDATE `list_options` SET `notes` = '1934-9' WHERE `title` = 'Mountain Village' AND `list_id` = 'race';
6365 #IfNotRow2Dx2 list_options list_id race option_id mowa_band_of_choctaw title Mowa Band of Choctaw
6366 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','mowa_band_of_choctaw','Mowa Band of Choctaw','5000', '0',' 1159-3', 0);
6369 #IfRow2D list_options list_id race option_id mowa_band_of_choctaw
6370 UPDATE `list_options` SET `notes` = '1159-3' WHERE `option_id` = 'mowa_band_of_choctaw' AND `list_id` = 'race';
6373 #IfRow2D list_options list_id race title Mowa Band of Choctaw
6374 UPDATE `list_options` SET `notes` = '1159-3' WHERE `title` = 'Mowa Band of Choctaw' AND `list_id` = 'race';
6377 #IfNotRow2Dx2 list_options list_id race option_id muckleshoot title Muckleshoot
6378 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','muckleshoot','Muckleshoot','5010', '0',' 1522-2', 0);
6381 #IfRow2D list_options list_id race option_id muckleshoot
6382 UPDATE `list_options` SET `notes` = '1522-2' WHERE `option_id` = 'muckleshoot' AND `list_id` = 'race';
6385 #IfRow2D list_options list_id race title Muckleshoot
6386 UPDATE `list_options` SET `notes` = '1522-2' WHERE `title` = 'Muckleshoot' AND `list_id` = 'race';
6389 #IfNotRow2Dx2 list_options list_id race option_id munsee title Munsee
6390 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','munsee','Munsee','5020', '0',' 1217-9', 0);
6393 #IfRow2D list_options list_id race option_id munsee
6394 UPDATE `list_options` SET `notes` = '1217-9' WHERE `option_id` = 'munsee' AND `list_id` = 'race';
6397 #IfRow2D list_options list_id race title Munsee
6398 UPDATE `list_options` SET `notes` = '1217-9' WHERE `title` = 'Munsee' AND `list_id` = 'race';
6401 #IfNotRow2Dx2 list_options list_id race option_id naknek title Naknek
6402 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','naknek','Naknek','5030', '0',' 1935-6', 0);
6405 #IfRow2D list_options list_id race option_id naknek
6406 UPDATE `list_options` SET `notes` = '1935-6' WHERE `option_id` = 'naknek' AND `list_id` = 'race';
6409 #IfRow2D list_options list_id race title Naknek
6410 UPDATE `list_options` SET `notes` = '1935-6' WHERE `title` = 'Naknek' AND `list_id` = 'race';
6413 #IfNotRow2Dx2 list_options list_id race option_id nambe title Nambe
6414 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nambe','Nambe','5040', '0',' 1498-5', 0);
6417 #IfRow2D list_options list_id race option_id nambe
6418 UPDATE `list_options` SET `notes` = '1498-5' WHERE `option_id` = 'nambe' AND `list_id` = 'race';
6421 #IfRow2D list_options list_id race title Nambe
6422 UPDATE `list_options` SET `notes` = '1498-5' WHERE `title` = 'Nambe' AND `list_id` = 'race';
6425 #IfNotRow2Dx2 list_options list_id race option_id namibian title Namibian
6426 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','namibian','Namibian','5050', '0',' 2064-4', 0);
6429 #IfRow2D list_options list_id race option_id namibian
6430 UPDATE `list_options` SET `notes` = '2064-4' WHERE `option_id` = 'namibian' AND `list_id` = 'race';
6433 #IfRow2D list_options list_id race title Namibian
6434 UPDATE `list_options` SET `notes` = '2064-4' WHERE `title` = 'Namibian' AND `list_id` = 'race';
6437 #IfNotRow2Dx2 list_options list_id race option_id nana_inupiat title Nana Inupiat
6438 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nana_inupiat','Nana Inupiat','5060', '0',' 1871-3', 0);
6441 #IfRow2D list_options list_id race option_id nana_inupiat
6442 UPDATE `list_options` SET `notes` = '1871-3' WHERE `option_id` = 'nana_inupiat' AND `list_id` = 'race';
6445 #IfRow2D list_options list_id race title Nana Inupiat
6446 UPDATE `list_options` SET `notes` = '1871-3' WHERE `title` = 'Nana Inupiat' AND `list_id` = 'race';
6449 #IfNotRow2Dx2 list_options list_id race option_id nansemond title Nansemond
6450 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nansemond','Nansemond','5070', '0',' 1238-5', 0);
6453 #IfRow2D list_options list_id race option_id nansemond
6454 UPDATE `list_options` SET `notes` = '1238-5' WHERE `option_id` = 'nansemond' AND `list_id` = 'race';
6457 #IfRow2D list_options list_id race title Nansemond
6458 UPDATE `list_options` SET `notes` = '1238-5' WHERE `title` = 'Nansemond' AND `list_id` = 'race';
6461 #IfNotRow2Dx2 list_options list_id race option_id nanticoke title Nanticoke
6462 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nanticoke','Nanticoke','5080', '0',' 1378-9', 0);
6465 #IfRow2D list_options list_id race option_id nanticoke
6466 UPDATE `list_options` SET `notes` = '1378-9' WHERE `option_id` = 'nanticoke' AND `list_id` = 'race';
6469 #IfRow2D list_options list_id race title Nanticoke
6470 UPDATE `list_options` SET `notes` = '1378-9' WHERE `title` = 'Nanticoke' AND `list_id` = 'race';
6473 #IfNotRow2Dx2 list_options list_id race option_id napakiak title Napakiak
6474 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','napakiak','Napakiak','5090', '0',' 1937-2', 0);
6477 #IfRow2D list_options list_id race option_id napakiak
6478 UPDATE `list_options` SET `notes` = '1937-2' WHERE `option_id` = 'napakiak' AND `list_id` = 'race';
6481 #IfRow2D list_options list_id race title Napakiak
6482 UPDATE `list_options` SET `notes` = '1937-2' WHERE `title` = 'Napakiak' AND `list_id` = 'race';
6485 #IfNotRow2Dx2 list_options list_id race option_id napaskiak title Napaskiak
6486 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','napaskiak','Napaskiak','5100', '0',' 1938-0', 0);
6489 #IfRow2D list_options list_id race option_id napaskiak
6490 UPDATE `list_options` SET `notes` = '1938-0' WHERE `option_id` = 'napaskiak' AND `list_id` = 'race';
6493 #IfRow2D list_options list_id race title Napaskiak
6494 UPDATE `list_options` SET `notes` = '1938-0' WHERE `title` = 'Napaskiak' AND `list_id` = 'race';
6497 #IfNotRow2Dx2 list_options list_id race option_id napaumute title Napaumute
6498 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','napaumute','Napaumute','5110', '0',' 1936-4', 0);
6501 #IfRow2D list_options list_id race option_id napaumute
6502 UPDATE `list_options` SET `notes` = '1936-4' WHERE `option_id` = 'napaumute' AND `list_id` = 'race';
6505 #IfRow2D list_options list_id race title Napaumute
6506 UPDATE `list_options` SET `notes` = '1936-4' WHERE `title` = 'Napaumute' AND `list_id` = 'race';
6509 #IfNotRow2Dx2 list_options list_id race option_id narragansett title Narragansett
6510 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','narragansett','Narragansett','5120', '0',' 1380-5', 0);
6513 #IfRow2D list_options list_id race option_id narragansett
6514 UPDATE `list_options` SET `notes` = '1380-5' WHERE `option_id` = 'narragansett' AND `list_id` = 'race';
6517 #IfRow2D list_options list_id race title Narragansett
6518 UPDATE `list_options` SET `notes` = '1380-5' WHERE `title` = 'Narragansett' AND `list_id` = 'race';
6521 #IfNotRow2Dx2 list_options list_id race option_id natchez title Natchez
6522 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','natchez','Natchez','5130', '0',' 1239-3', 0);
6525 #IfRow2D list_options list_id race option_id natchez
6526 UPDATE `list_options` SET `notes` = '1239-3' WHERE `option_id` = 'natchez' AND `list_id` = 'race';
6529 #IfRow2D list_options list_id race title Natchez
6530 UPDATE `list_options` SET `notes` = '1239-3' WHERE `title` = 'Natchez' AND `list_id` = 'race';
6533 #IfNotRow2Dx2 list_options list_id race option_id native_hawaiian title Native Hawaiian
6534 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','native_hawaiian','Native Hawaiian','5140', '0',' 2079-2', 0);
6537 #IfRow2D list_options list_id race option_id native_hawaiian
6538 UPDATE `list_options` SET `notes` = '2079-2' WHERE `option_id` = 'native_hawaiian' AND `list_id` = 'race';
6541 #IfRow2D list_options list_id race title Native Hawaiian
6542 UPDATE `list_options` SET `notes` = '2079-2' WHERE `title` = 'Native Hawaiian' AND `list_id` = 'race';
6545 #IfNotRow2Dx2 list_options list_id race option_id nausu_waiwash title Nausu Waiwash
6546 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nausu_waiwash','Nausu Waiwash','5160', '0',' 1240-1', 0);
6549 #IfRow2D list_options list_id race option_id nausu_waiwash
6550 UPDATE `list_options` SET `notes` = '1240-1' WHERE `option_id` = 'nausu_waiwash' AND `list_id` = 'race';
6553 #IfRow2D list_options list_id race title Nausu Waiwash
6554 UPDATE `list_options` SET `notes` = '1240-1' WHERE `title` = 'Nausu Waiwash' AND `list_id` = 'race';
6557 #IfNotRow2Dx2 list_options list_id race option_id navajo title Navajo
6558 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','navajo','Navajo','5170', '0',' 1382-1', 0);
6561 #IfRow2D list_options list_id race option_id navajo
6562 UPDATE `list_options` SET `notes` = '1382-1' WHERE `option_id` = 'navajo' AND `list_id` = 'race';
6565 #IfRow2D list_options list_id race title Navajo
6566 UPDATE `list_options` SET `notes` = '1382-1' WHERE `title` = 'Navajo' AND `list_id` = 'race';
6569 #IfNotRow2Dx2 list_options list_id race option_id nebraska_ponca title Nebraska Ponca
6570 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nebraska_ponca','Nebraska Ponca','5180', '0',' 1475-3', 0);
6573 #IfRow2D list_options list_id race option_id nebraska_ponca
6574 UPDATE `list_options` SET `notes` = '1475-3' WHERE `option_id` = 'nebraska_ponca' AND `list_id` = 'race';
6577 #IfRow2D list_options list_id race title Nebraska Ponca
6578 UPDATE `list_options` SET `notes` = '1475-3' WHERE `title` = 'Nebraska Ponca' AND `list_id` = 'race';
6581 #IfNotRow2Dx2 list_options list_id race option_id nebraska_winnebago title Nebraska Winnebago
6582 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nebraska_winnebago','Nebraska Winnebago','5190', '0',' 1698-0', 0);
6585 #IfRow2D list_options list_id race option_id nebraska_winnebago
6586 UPDATE `list_options` SET `notes` = '1698-0' WHERE `option_id` = 'nebraska_winnebago' AND `list_id` = 'race';
6589 #IfRow2D list_options list_id race title Nebraska Winnebago
6590 UPDATE `list_options` SET `notes` = '1698-0' WHERE `title` = 'Nebraska Winnebago' AND `list_id` = 'race';
6593 #IfNotRow2Dx2 list_options list_id race option_id nelson_lagoon title Nelson Lagoon
6594 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nelson_lagoon','Nelson Lagoon','5200', '0',' 2016-4', 0);
6597 #IfRow2D list_options list_id race option_id nelson_lagoon
6598 UPDATE `list_options` SET `notes` = '2016-4' WHERE `option_id` = 'nelson_lagoon' AND `list_id` = 'race';
6601 #IfRow2D list_options list_id race title Nelson Lagoon
6602 UPDATE `list_options` SET `notes` = '2016-4' WHERE `title` = 'Nelson Lagoon' AND `list_id` = 'race';
6605 #IfNotRow2Dx2 list_options list_id race option_id nenana title Nenana
6606 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nenana','Nenana','5210', '0',' 1783-0', 0);
6609 #IfRow2D list_options list_id race option_id nenana
6610 UPDATE `list_options` SET `notes` = '1783-0' WHERE `option_id` = 'nenana' AND `list_id` = 'race';
6613 #IfRow2D list_options list_id race title Nenana
6614 UPDATE `list_options` SET `notes` = '1783-0' WHERE `title` = 'Nenana' AND `list_id` = 'race';
6617 #IfNotRow2Dx2 list_options list_id race option_id nepalese title Nepalese
6618 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nepalese','Nepalese','5220', '0',' 2050-3', 0);
6621 #IfRow2D list_options list_id race option_id nepalese
6622 UPDATE `list_options` SET `notes` = '2050-3' WHERE `option_id` = 'nepalese' AND `list_id` = 'race';
6625 #IfRow2D list_options list_id race title Nepalese
6626 UPDATE `list_options` SET `notes` = '2050-3' WHERE `title` = 'Nepalese' AND `list_id` = 'race';
6629 #IfNotRow2Dx2 list_options list_id race option_id new_hebrides title New Hebrides
6630 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','new_hebrides','New Hebrides','5230', '0',' 2104-8', 0);
6633 #IfRow2D list_options list_id race option_id new_hebrides
6634 UPDATE `list_options` SET `notes` = '2104-8' WHERE `option_id` = 'new_hebrides' AND `list_id` = 'race';
6637 #IfRow2D list_options list_id race title New Hebrides
6638 UPDATE `list_options` SET `notes` = '2104-8' WHERE `title` = 'New Hebrides' AND `list_id` = 'race';
6641 #IfNotRow2Dx2 list_options list_id race option_id new_stuyahok title New Stuyahok
6642 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','new_stuyahok','New Stuyahok','5240', '0',' 1940-6', 0);
6645 #IfRow2D list_options list_id race option_id new_stuyahok
6646 UPDATE `list_options` SET `notes` = '1940-6' WHERE `option_id` = 'new_stuyahok' AND `list_id` = 'race';
6649 #IfRow2D list_options list_id race title New Stuyahok
6650 UPDATE `list_options` SET `notes` = '1940-6' WHERE `title` = 'New Stuyahok' AND `list_id` = 'race';
6653 #IfNotRow2Dx2 list_options list_id race option_id newhalen title Newhalen
6654 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','newhalen','Newhalen','5250', '0',' 1939-8', 0);
6657 #IfRow2D list_options list_id race option_id newhalen
6658 UPDATE `list_options` SET `notes` = '1939-8' WHERE `option_id` = 'newhalen' AND `list_id` = 'race';
6661 #IfRow2D list_options list_id race title Newhalen
6662 UPDATE `list_options` SET `notes` = '1939-8' WHERE `title` = 'Newhalen' AND `list_id` = 'race';
6665 #IfNotRow2Dx2 list_options list_id race option_id newtok title Newtok
6666 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','newtok','Newtok','5260', '0',' 1941-4', 0);
6669 #IfRow2D list_options list_id race option_id newtok
6670 UPDATE `list_options` SET `notes` = '1941-4' WHERE `option_id` = 'newtok' AND `list_id` = 'race';
6673 #IfRow2D list_options list_id race title Newtok
6674 UPDATE `list_options` SET `notes` = '1941-4' WHERE `title` = 'Newtok' AND `list_id` = 'race';
6677 #IfNotRow2Dx2 list_options list_id race option_id nez_perce title Nez Perce
6678 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nez_perce','Nez Perce','5270', '0',' 1387-0', 0);
6681 #IfRow2D list_options list_id race option_id nez_perce
6682 UPDATE `list_options` SET `notes` = '1387-0' WHERE `option_id` = 'nez_perce' AND `list_id` = 'race';
6685 #IfRow2D list_options list_id race title Nez Perce
6686 UPDATE `list_options` SET `notes` = '1387-0' WHERE `title` = 'Nez Perce' AND `list_id` = 'race';
6689 #IfNotRow2Dx2 list_options list_id race option_id nigerian title Nigerian
6690 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nigerian','Nigerian','5280', '0',' 2065-1', 0);
6693 #IfRow2D list_options list_id race option_id nigerian
6694 UPDATE `list_options` SET `notes` = '2065-1' WHERE `option_id` = 'nigerian' AND `list_id` = 'race';
6697 #IfRow2D list_options list_id race title Nigerian
6698 UPDATE `list_options` SET `notes` = '2065-1' WHERE `title` = 'Nigerian' AND `list_id` = 'race';
6701 #IfNotRow2Dx2 list_options list_id race option_id nightmute title Nightmute
6702 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nightmute','Nightmute','5290', '0',' 1942-2', 0);
6705 #IfRow2D list_options list_id race option_id nightmute
6706 UPDATE `list_options` SET `notes` = '1942-2' WHERE `option_id` = 'nightmute' AND `list_id` = 'race';
6709 #IfRow2D list_options list_id race title Nightmute
6710 UPDATE `list_options` SET `notes` = '1942-2' WHERE `title` = 'Nightmute' AND `list_id` = 'race';
6713 #IfNotRow2Dx2 list_options list_id race option_id nikolai title Nikolai
6714 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nikolai','Nikolai','5300', '0',' 1784-8', 0);
6717 #IfRow2D list_options list_id race option_id nikolai
6718 UPDATE `list_options` SET `notes` = '1784-8' WHERE `option_id` = 'nikolai' AND `list_id` = 'race';
6721 #IfRow2D list_options list_id race title Nikolai
6722 UPDATE `list_options` SET `notes` = '1784-8' WHERE `title` = 'Nikolai' AND `list_id` = 'race';
6725 #IfNotRow2Dx2 list_options list_id race option_id nikolski title Nikolski
6726 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nikolski','Nikolski','5310', '0',' 2017-2', 0);
6729 #IfRow2D list_options list_id race option_id nikolski
6730 UPDATE `list_options` SET `notes` = '2017-2' WHERE `option_id` = 'nikolski' AND `list_id` = 'race';
6733 #IfRow2D list_options list_id race title Nikolski
6734 UPDATE `list_options` SET `notes` = '2017-2' WHERE `title` = 'Nikolski' AND `list_id` = 'race';
6737 #IfNotRow2Dx2 list_options list_id race option_id ninilchik title Ninilchik
6738 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ninilchik','Ninilchik','5320', '0',' 1785-5', 0);
6741 #IfRow2D list_options list_id race option_id ninilchik
6742 UPDATE `list_options` SET `notes` = '1785-5' WHERE `option_id` = 'ninilchik' AND `list_id` = 'race';
6745 #IfRow2D list_options list_id race title Ninilchik
6746 UPDATE `list_options` SET `notes` = '1785-5' WHERE `title` = 'Ninilchik' AND `list_id` = 'race';
6749 #IfNotRow2Dx2 list_options list_id race option_id nipmuc title Nipmuc
6750 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nipmuc','Nipmuc','5330', '0',' 1241-9', 0);
6753 #IfRow2D list_options list_id race option_id nipmuc
6754 UPDATE `list_options` SET `notes` = '1241-9' WHERE `option_id` = 'nipmuc' AND `list_id` = 'race';
6757 #IfRow2D list_options list_id race title Nipmuc
6758 UPDATE `list_options` SET `notes` = '1241-9' WHERE `title` = 'Nipmuc' AND `list_id` = 'race';
6761 #IfNotRow2Dx2 list_options list_id race option_id nishinam title Nishinam
6762 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nishinam','Nishinam','5340', '0',' 1346-6', 0);
6765 #IfRow2D list_options list_id race option_id nishinam
6766 UPDATE `list_options` SET `notes` = '1346-6' WHERE `option_id` = 'nishinam' AND `list_id` = 'race';
6769 #IfRow2D list_options list_id race title Nishinam
6770 UPDATE `list_options` SET `notes` = '1346-6' WHERE `title` = 'Nishinam' AND `list_id` = 'race';
6773 #IfNotRow2Dx2 list_options list_id race option_id nisqually title Nisqually
6774 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nisqually','Nisqually','5350', '0',' 1523-0', 0);
6777 #IfRow2D list_options list_id race option_id nisqually
6778 UPDATE `list_options` SET `notes` = '1523-0' WHERE `option_id` = 'nisqually' AND `list_id` = 'race';
6781 #IfRow2D list_options list_id race title Nisqually
6782 UPDATE `list_options` SET `notes` = '1523-0' WHERE `title` = 'Nisqually' AND `list_id` = 'race';
6785 #IfNotRow2Dx2 list_options list_id race option_id noatak title Noatak
6786 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','noatak','Noatak','5360', '0',' 1872-1', 0);
6789 #IfRow2D list_options list_id race option_id noatak
6790 UPDATE `list_options` SET `notes` = '1872-1' WHERE `option_id` = 'noatak' AND `list_id` = 'race';
6793 #IfRow2D list_options list_id race title Noatak
6794 UPDATE `list_options` SET `notes` = '1872-1' WHERE `title` = 'Noatak' AND `list_id` = 'race';
6797 #IfNotRow2Dx2 list_options list_id race option_id nomalaki title Nomalaki
6798 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nomalaki','Nomalaki','5370', '0',' 1389-6', 0);
6801 #IfRow2D list_options list_id race option_id nomalaki
6802 UPDATE `list_options` SET `notes` = '1389-6' WHERE `option_id` = 'nomalaki' AND `list_id` = 'race';
6805 #IfRow2D list_options list_id race title Nomalaki
6806 UPDATE `list_options` SET `notes` = '1389-6' WHERE `title` = 'Nomalaki' AND `list_id` = 'race';
6809 #IfNotRow2Dx2 list_options list_id race option_id nome title Nome
6810 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nome','Nome','5380', '0',' 1873-9', 0);
6813 #IfRow2D list_options list_id race option_id nome
6814 UPDATE `list_options` SET `notes` = '1873-9' WHERE `option_id` = 'nome' AND `list_id` = 'race';
6817 #IfRow2D list_options list_id race title Nome
6818 UPDATE `list_options` SET `notes` = '1873-9' WHERE `title` = 'Nome' AND `list_id` = 'race';
6821 #IfNotRow2Dx2 list_options list_id race option_id nondalton title Nondalton
6822 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nondalton','Nondalton','5390', '0',' 1786-3', 0);
6825 #IfRow2D list_options list_id race option_id nondalton
6826 UPDATE `list_options` SET `notes` = '1786-3' WHERE `option_id` = 'nondalton' AND `list_id` = 'race';
6829 #IfRow2D list_options list_id race title Nondalton
6830 UPDATE `list_options` SET `notes` = '1786-3' WHERE `title` = 'Nondalton' AND `list_id` = 'race';
6833 #IfNotRow2Dx2 list_options list_id race option_id nooksack title Nooksack
6834 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nooksack','Nooksack','5400', '0',' 1524-8', 0);
6837 #IfRow2D list_options list_id race option_id nooksack
6838 UPDATE `list_options` SET `notes` = '1524-8' WHERE `option_id` = 'nooksack' AND `list_id` = 'race';
6841 #IfRow2D list_options list_id race title Nooksack
6842 UPDATE `list_options` SET `notes` = '1524-8' WHERE `title` = 'Nooksack' AND `list_id` = 'race';
6845 #IfNotRow2Dx2 list_options list_id race option_id noorvik title Noorvik
6846 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','noorvik','Noorvik','5410', '0',' 1874-7', 0);
6849 #IfRow2D list_options list_id race option_id noorvik
6850 UPDATE `list_options` SET `notes` = '1874-7' WHERE `option_id` = 'noorvik' AND `list_id` = 'race';
6853 #IfRow2D list_options list_id race title Noorvik
6854 UPDATE `list_options` SET `notes` = '1874-7' WHERE `title` = 'Noorvik' AND `list_id` = 'race';
6857 #IfNotRow2Dx2 list_options list_id race option_id northern_arapaho title Northern Arapaho
6858 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northern_arapaho','Northern Arapaho','5420', '0',' 1022-3', 0);
6861 #IfRow2D list_options list_id race option_id northern_arapaho
6862 UPDATE `list_options` SET `notes` = '1022-3' WHERE `option_id` = 'northern_arapaho' AND `list_id` = 'race';
6865 #IfRow2D list_options list_id race title Northern Arapaho
6866 UPDATE `list_options` SET `notes` = '1022-3' WHERE `title` = 'Northern Arapaho' AND `list_id` = 'race';
6869 #IfNotRow2Dx2 list_options list_id race option_id northern_cherokee title Northern Cherokee
6870 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northern_cherokee','Northern Cherokee','5430', '0',' 1095-9', 0);
6873 #IfRow2D list_options list_id race option_id northern_cherokee
6874 UPDATE `list_options` SET `notes` = '1095-9' WHERE `option_id` = 'northern_cherokee' AND `list_id` = 'race';
6877 #IfRow2D list_options list_id race title Northern Cherokee
6878 UPDATE `list_options` SET `notes` = '1095-9' WHERE `title` = 'Northern Cherokee' AND `list_id` = 'race';
6881 #IfNotRow2Dx2 list_options list_id race option_id northern_cheyenne title Northern Cheyenne
6882 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northern_cheyenne','Northern Cheyenne','5440', '0',' 1103-1', 0);
6885 #IfRow2D list_options list_id race option_id northern_cheyenne
6886 UPDATE `list_options` SET `notes` = '1103-1' WHERE `option_id` = 'northern_cheyenne' AND `list_id` = 'race';
6889 #IfRow2D list_options list_id race title Northern Cheyenne
6890 UPDATE `list_options` SET `notes` = '1103-1' WHERE `title` = 'Northern Cheyenne' AND `list_id` = 'race';
6893 #IfNotRow2Dx2 list_options list_id race option_id northern_paiute title Northern Paiute
6894 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northern_paiute','Northern Paiute','5450', '0',' 1429-0', 0);
6897 #IfRow2D list_options list_id race option_id northern_paiute
6898 UPDATE `list_options` SET `notes` = '1429-0' WHERE `option_id` = 'northern_paiute' AND `list_id` = 'race';
6901 #IfRow2D list_options list_id race title Northern Paiute
6902 UPDATE `list_options` SET `notes` = '1429-0' WHERE `title` = 'Northern Paiute' AND `list_id` = 'race';
6905 #IfNotRow2Dx2 list_options list_id race option_id northern_pomo title Northern Pomo
6906 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northern_pomo','Northern Pomo','5460', '0',' 1469-6', 0);
6909 #IfRow2D list_options list_id race option_id northern_pomo
6910 UPDATE `list_options` SET `notes` = '1469-6' WHERE `option_id` = 'northern_pomo' AND `list_id` = 'race';
6913 #IfRow2D list_options list_id race title Northern Pomo
6914 UPDATE `list_options` SET `notes` = '1469-6' WHERE `title` = 'Northern Pomo' AND `list_id` = 'race';
6917 #IfNotRow2Dx2 list_options list_id race option_id northway title Northway
6918 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northway','Northway','5470', '0',' 1787-1', 0);
6921 #IfRow2D list_options list_id race option_id northway
6922 UPDATE `list_options` SET `notes` = '1787-1' WHERE `option_id` = 'northway' AND `list_id` = 'race';
6925 #IfRow2D list_options list_id race title Northway
6926 UPDATE `list_options` SET `notes` = '1787-1' WHERE `title` = 'Northway' AND `list_id` = 'race';
6929 #IfNotRow2Dx2 list_options list_id race option_id northwest_tribes title Northwest Tribes
6930 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','northwest_tribes','Northwest Tribes','5480', '0',' 1391-2', 0);
6933 #IfRow2D list_options list_id race option_id northwest_tribes
6934 UPDATE `list_options` SET `notes` = '1391-2' WHERE `option_id` = 'northwest_tribes' AND `list_id` = 'race';
6937 #IfRow2D list_options list_id race title Northwest Tribes
6938 UPDATE `list_options` SET `notes` = '1391-2' WHERE `title` = 'Northwest Tribes' AND `list_id` = 'race';
6941 #IfNotRow2Dx2 list_options list_id race option_id nuiqsut title Nuiqsut
6942 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nuiqsut','Nuiqsut','5490', '0',' 1875-4', 0);
6945 #IfRow2D list_options list_id race option_id nuiqsut
6946 UPDATE `list_options` SET `notes` = '1875-4' WHERE `option_id` = 'nuiqsut' AND `list_id` = 'race';
6949 #IfRow2D list_options list_id race title Nuiqsut
6950 UPDATE `list_options` SET `notes` = '1875-4' WHERE `title` = 'Nuiqsut' AND `list_id` = 'race';
6953 #IfNotRow2Dx2 list_options list_id race option_id nulato title Nulato
6954 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nulato','Nulato','5500', '0',' 1788-9', 0);
6957 #IfRow2D list_options list_id race option_id nulato
6958 UPDATE `list_options` SET `notes` = '1788-9' WHERE `option_id` = 'nulato' AND `list_id` = 'race';
6961 #IfRow2D list_options list_id race title Nulato
6962 UPDATE `list_options` SET `notes` = '1788-9' WHERE `title` = 'Nulato' AND `list_id` = 'race';
6965 #IfNotRow2Dx2 list_options list_id race option_id nunapitchukv title Nunapitchukv
6966 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','nunapitchukv','Nunapitchukv','5510', '0',' 1943-0', 0);
6969 #IfRow2D list_options list_id race option_id nunapitchukv
6970 UPDATE `list_options` SET `notes` = '1943-0' WHERE `option_id` = 'nunapitchukv' AND `list_id` = 'race';
6973 #IfRow2D list_options list_id race title Nunapitchukv
6974 UPDATE `list_options` SET `notes` = '1943-0' WHERE `title` = 'Nunapitchukv' AND `list_id` = 'race';
6977 #IfNotRow2Dx2 list_options list_id race option_id oglala_sioux title Oglala Sioux
6978 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oglala_sioux','Oglala Sioux','5520', '0',' 1622-0', 0);
6981 #IfRow2D list_options list_id race option_id oglala_sioux
6982 UPDATE `list_options` SET `notes` = '1622-0' WHERE `option_id` = 'oglala_sioux' AND `list_id` = 'race';
6985 #IfRow2D list_options list_id race title Oglala Sioux
6986 UPDATE `list_options` SET `notes` = '1622-0' WHERE `title` = 'Oglala Sioux' AND `list_id` = 'race';
6989 #IfNotRow2Dx2 list_options list_id race option_id okinawan title Okinawan
6990 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','okinawan','Okinawan','5530', '0',' 2043-8', 0);
6993 #IfRow2D list_options list_id race option_id okinawan
6994 UPDATE `list_options` SET `notes` = '2043-8' WHERE `option_id` = 'okinawan' AND `list_id` = 'race';
6997 #IfRow2D list_options list_id race title Okinawan
6998 UPDATE `list_options` SET `notes` = '2043-8' WHERE `title` = 'Okinawan' AND `list_id` = 'race';
7001 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_apache title Oklahoma Apache
7002 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_apache','Oklahoma Apache','5540', '0',' 1016-5', 0);
7005 #IfRow2D list_options list_id race option_id oklahoma_apache
7006 UPDATE `list_options` SET `notes` = '1016-5' WHERE `option_id` = 'oklahoma_apache' AND `list_id` = 'race';
7009 #IfRow2D list_options list_id race title Oklahoma Apache
7010 UPDATE `list_options` SET `notes` = '1016-5' WHERE `title` = 'Oklahoma Apache' AND `list_id` = 'race';
7013 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_cado title Oklahoma Cado
7014 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_cado','Oklahoma Cado','5550', '0',' 1042-1', 0);
7017 #IfRow2D list_options list_id race option_id oklahoma_cado
7018 UPDATE `list_options` SET `notes` = '1042-1' WHERE `option_id` = 'oklahoma_cado' AND `list_id` = 'race';
7021 #IfRow2D list_options list_id race title Oklahoma Cado
7022 UPDATE `list_options` SET `notes` = '1042-1' WHERE `title` = 'Oklahoma Cado' AND `list_id` = 'race';
7025 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_choctaw title Oklahoma Choctaw
7026 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_choctaw','Oklahoma Choctaw','5560', '0',' 1160-1', 0);
7029 #IfRow2D list_options list_id race option_id oklahoma_choctaw
7030 UPDATE `list_options` SET `notes` = '1160-1' WHERE `option_id` = 'oklahoma_choctaw' AND `list_id` = 'race';
7033 #IfRow2D list_options list_id race title Oklahoma Choctaw
7034 UPDATE `list_options` SET `notes` = '1160-1' WHERE `title` = 'Oklahoma Choctaw' AND `list_id` = 'race';
7037 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_comanche title Oklahoma Comanche
7038 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_comanche','Oklahoma Comanche','5570', '0',' 1176-7', 0);
7041 #IfRow2D list_options list_id race option_id oklahoma_comanche
7042 UPDATE `list_options` SET `notes` = '1176-7' WHERE `option_id` = 'oklahoma_comanche' AND `list_id` = 'race';
7045 #IfRow2D list_options list_id race title Oklahoma Comanche
7046 UPDATE `list_options` SET `notes` = '1176-7' WHERE `title` = 'Oklahoma Comanche' AND `list_id` = 'race';
7049 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_delaware title Oklahoma Delaware
7050 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_delaware','Oklahoma Delaware','5580', '0',' 1218-7', 0);
7053 #IfRow2D list_options list_id race option_id oklahoma_delaware
7054 UPDATE `list_options` SET `notes` = '1218-7' WHERE `option_id` = 'oklahoma_delaware' AND `list_id` = 'race';
7057 #IfRow2D list_options list_id race title Oklahoma Delaware
7058 UPDATE `list_options` SET `notes` = '1218-7' WHERE `title` = 'Oklahoma Delaware' AND `list_id` = 'race';
7061 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kickapoo title Oklahoma Kickapoo
7062 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kickapoo','Oklahoma Kickapoo','5590', '0',' 1306-0', 0);
7065 #IfRow2D list_options list_id race option_id oklahoma_kickapoo
7066 UPDATE `list_options` SET `notes` = '1306-0' WHERE `option_id` = 'oklahoma_kickapoo' AND `list_id` = 'race';
7069 #IfRow2D list_options list_id race title Oklahoma Kickapoo
7070 UPDATE `list_options` SET `notes` = '1306-0' WHERE `title` = 'Oklahoma Kickapoo' AND `list_id` = 'race';
7073 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kiowa title Oklahoma Kiowa
7074 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kiowa','Oklahoma Kiowa','5600', '0',' 1310-2', 0);
7077 #IfRow2D list_options list_id race option_id oklahoma_kiowa
7078 UPDATE `list_options` SET `notes` = '1310-2' WHERE `option_id` = 'oklahoma_kiowa' AND `list_id` = 'race';
7081 #IfRow2D list_options list_id race title Oklahoma Kiowa
7082 UPDATE `list_options` SET `notes` = '1310-2' WHERE `title` = 'Oklahoma Kiowa' AND `list_id` = 'race';
7085 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_miami title Oklahoma Miami
7086 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_miami','Oklahoma Miami','5610', '0',' 1361-5', 0);
7089 #IfRow2D list_options list_id race option_id oklahoma_miami
7090 UPDATE `list_options` SET `notes` = '1361-5' WHERE `option_id` = 'oklahoma_miami' AND `list_id` = 'race';
7093 #IfRow2D list_options list_id race title Oklahoma Miami
7094 UPDATE `list_options` SET `notes` = '1361-5' WHERE `title` = 'Oklahoma Miami' AND `list_id` = 'race';
7097 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ottawa title Oklahoma Ottawa
7098 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ottawa','Oklahoma Ottawa','5620', '0',' 1414-2', 0);
7101 #IfRow2D list_options list_id race option_id oklahoma_ottawa
7102 UPDATE `list_options` SET `notes` = '1414-2' WHERE `option_id` = 'oklahoma_ottawa' AND `list_id` = 'race';
7105 #IfRow2D list_options list_id race title Oklahoma Ottawa
7106 UPDATE `list_options` SET `notes` = '1414-2' WHERE `title` = 'Oklahoma Ottawa' AND `list_id` = 'race';
7109 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_pawnee title Oklahoma Pawnee
7110 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_pawnee','Oklahoma Pawnee','5630', '0',' 1446-4', 0);
7113 #IfRow2D list_options list_id race option_id oklahoma_pawnee
7114 UPDATE `list_options` SET `notes` = '1446-4' WHERE `option_id` = 'oklahoma_pawnee' AND `list_id` = 'race';
7117 #IfRow2D list_options list_id race title Oklahoma Pawnee
7118 UPDATE `list_options` SET `notes` = '1446-4' WHERE `title` = 'Oklahoma Pawnee' AND `list_id` = 'race';
7121 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_peoria title Oklahoma Peoria
7122 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_peoria','Oklahoma Peoria','5640', '0',' 1451-4', 0);
7125 #IfRow2D list_options list_id race option_id oklahoma_peoria
7126 UPDATE `list_options` SET `notes` = '1451-4' WHERE `option_id` = 'oklahoma_peoria' AND `list_id` = 'race';
7129 #IfRow2D list_options list_id race title Oklahoma Peoria
7130 UPDATE `list_options` SET `notes` = '1451-4' WHERE `title` = 'Oklahoma Peoria' AND `list_id` = 'race';
7133 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ponca title Oklahoma Ponca
7134 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ponca','Oklahoma Ponca','5650', '0',' 1476-1', 0);
7137 #IfRow2D list_options list_id race option_id oklahoma_ponca
7138 UPDATE `list_options` SET `notes` = '1476-1' WHERE `option_id` = 'oklahoma_ponca' AND `list_id` = 'race';
7141 #IfRow2D list_options list_id race title Oklahoma Ponca
7142 UPDATE `list_options` SET `notes` = '1476-1' WHERE `title` = 'Oklahoma Ponca' AND `list_id` = 'race';
7145 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_sac_and_fox title Oklahoma Sac and Fox
7146 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_sac_and_fox','Oklahoma Sac and Fox','5660', '0',' 1554-5', 0);
7149 #IfRow2D list_options list_id race option_id oklahoma_sac_and_fox
7150 UPDATE `list_options` SET `notes` = '1554-5' WHERE `option_id` = 'oklahoma_sac_and_fox' AND `list_id` = 'race';
7153 #IfRow2D list_options list_id race title Oklahoma Sac and Fox
7154 UPDATE `list_options` SET `notes` = '1554-5' WHERE `title` = 'Oklahoma Sac and Fox' AND `list_id` = 'race';
7157 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_seminole title Oklahoma Seminole
7158 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oklahoma_seminole','Oklahoma Seminole','5670', '0',' 1571-9', 0);
7161 #IfRow2D list_options list_id race option_id oklahoma_seminole
7162 UPDATE `list_options` SET `notes` = '1571-9' WHERE `option_id` = 'oklahoma_seminole' AND `list_id` = 'race';
7165 #IfRow2D list_options list_id race title Oklahoma Seminole
7166 UPDATE `list_options` SET `notes` = '1571-9' WHERE `title` = 'Oklahoma Seminole' AND `list_id` = 'race';
7169 #IfNotRow2Dx2 list_options list_id race option_id old_harbor title Old Harbor
7170 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','old_harbor','Old Harbor','5680', '0',' 1998-4', 0);
7173 #IfRow2D list_options list_id race option_id old_harbor
7174 UPDATE `list_options` SET `notes` = '1998-4' WHERE `option_id` = 'old_harbor' AND `list_id` = 'race';
7177 #IfRow2D list_options list_id race title Old Harbor
7178 UPDATE `list_options` SET `notes` = '1998-4' WHERE `title` = 'Old Harbor' AND `list_id` = 'race';
7181 #IfNotRow2Dx2 list_options list_id race option_id omaha title Omaha
7182 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','omaha','Omaha','5690', '0',' 1403-5', 0);
7185 #IfRow2D list_options list_id race option_id omaha
7186 UPDATE `list_options` SET `notes` = '1403-5' WHERE `option_id` = 'omaha' AND `list_id` = 'race';
7189 #IfRow2D list_options list_id race title Omaha
7190 UPDATE `list_options` SET `notes` = '1403-5' WHERE `title` = 'Omaha' AND `list_id` = 'race';
7193 #IfNotRow2Dx2 list_options list_id race option_id oneida title Oneida
7194 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oneida','Oneida','5700', '0',' 1288-0', 0);
7197 #IfRow2D list_options list_id race option_id oneida
7198 UPDATE `list_options` SET `notes` = '1288-0' WHERE `option_id` = 'oneida' AND `list_id` = 'race';
7201 #IfRow2D list_options list_id race title Oneida
7202 UPDATE `list_options` SET `notes` = '1288-0' WHERE `title` = 'Oneida' AND `list_id` = 'race';
7205 #IfNotRow2Dx2 list_options list_id race option_id onondaga title Onondaga
7206 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','onondaga','Onondaga','5710', '0',' 1289-8', 0);
7209 #IfRow2D list_options list_id race option_id onondaga
7210 UPDATE `list_options` SET `notes` = '1289-8' WHERE `option_id` = 'onondaga' AND `list_id` = 'race';
7213 #IfRow2D list_options list_id race title Onondaga
7214 UPDATE `list_options` SET `notes` = '1289-8' WHERE `title` = 'Onondaga' AND `list_id` = 'race';
7217 #IfNotRow2Dx2 list_options list_id race option_id ontonagon title Ontonagon
7218 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ontonagon','Ontonagon','5720', '0',' 1140-3', 0);
7221 #IfRow2D list_options list_id race option_id ontonagon
7222 UPDATE `list_options` SET `notes` = '1140-3' WHERE `option_id` = 'ontonagon' AND `list_id` = 'race';
7225 #IfRow2D list_options list_id race title Ontonagon
7226 UPDATE `list_options` SET `notes` = '1140-3' WHERE `title` = 'Ontonagon' AND `list_id` = 'race';
7229 #IfNotRow2Dx2 list_options list_id race option_id oregon_athabaskan title Oregon Athabaskan
7230 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oregon_athabaskan','Oregon Athabaskan','5730', '0',' 1405-0', 0);
7233 #IfRow2D list_options list_id race option_id oregon_athabaskan
7234 UPDATE `list_options` SET `notes` = '1405-0' WHERE `option_id` = 'oregon_athabaskan' AND `list_id` = 'race';
7237 #IfRow2D list_options list_id race title Oregon Athabaskan
7238 UPDATE `list_options` SET `notes` = '1405-0' WHERE `title` = 'Oregon Athabaskan' AND `list_id` = 'race';
7241 #IfNotRow2Dx2 list_options list_id race option_id osage title Osage
7242 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','osage','Osage','5740', '0',' 1407-6', 0);
7245 #IfRow2D list_options list_id race option_id osage
7246 UPDATE `list_options` SET `notes` = '1407-6' WHERE `option_id` = 'osage' AND `list_id` = 'race';
7249 #IfRow2D list_options list_id race title Osage
7250 UPDATE `list_options` SET `notes` = '1407-6' WHERE `title` = 'Osage' AND `list_id` = 'race';
7253 #IfNotRow2Dx2 list_options list_id race option_id oscarville title Oscarville
7254 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','oscarville','Oscarville','5750', '0',' 1944-8', 0);
7257 #IfRow2D list_options list_id race option_id oscarville
7258 UPDATE `list_options` SET `notes` = '1944-8' WHERE `option_id` = 'oscarville' AND `list_id` = 'race';
7261 #IfRow2D list_options list_id race title Oscarville
7262 UPDATE `list_options` SET `notes` = '1944-8' WHERE `title` = 'Oscarville' AND `list_id` = 'race';
7265 #IfNotRow2Dx2 list_options list_id race option_id other_pacific_islander title Other Pacific Islander
7266 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','other_pacific_islander','Other Pacific Islander','5760', '0',' 2500-7', 0);
7269 #IfRow2D list_options list_id race option_id other_pacific_islander
7270 UPDATE `list_options` SET `notes` = '2500-7' WHERE `option_id` = 'other_pacific_islander' AND `list_id` = 'race';
7273 #IfRow2D list_options list_id race title Other Pacific Islander
7274 UPDATE `list_options` SET `notes` = '2500-7' WHERE `title` = 'Other Pacific Islander' AND `list_id` = 'race';
7277 #IfNotRow2Dx2 list_options list_id race option_id other_race title Other Race
7278 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','other_race','Other Race','5770', '0',' 2131-1', 0);
7281 #IfRow2D list_options list_id race option_id other_race
7282 UPDATE `list_options` SET `notes` = '2131-1' WHERE `option_id` = 'other_race' AND `list_id` = 'race';
7285 #IfRow2D list_options list_id race title Other Race
7286 UPDATE `list_options` SET `notes` = '2131-1' WHERE `title` = 'Other Race' AND `list_id` = 'race';
7289 #IfNotRow2Dx2 list_options list_id race option_id otoe-missouria title Otoe-Missouria
7290 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','otoe-missouria','Otoe-Missouria','5780', '0',' 1409-2', 0);
7293 #IfRow2D list_options list_id race option_id otoe-missouria
7294 UPDATE `list_options` SET `notes` = '1409-2' WHERE `option_id` = 'otoe-missouria' AND `list_id` = 'race';
7297 #IfRow2D list_options list_id race title Otoe-Missouria
7298 UPDATE `list_options` SET `notes` = '1409-2' WHERE `title` = 'Otoe-Missouria' AND `list_id` = 'race';
7301 #IfNotRow2Dx2 list_options list_id race option_id ottawa title Ottawa
7302 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ottawa','Ottawa','5790', '0',' 1411-8', 0);
7305 #IfRow2D list_options list_id race option_id ottawa
7306 UPDATE `list_options` SET `notes` = '1411-8' WHERE `option_id` = 'ottawa' AND `list_id` = 'race';
7309 #IfRow2D list_options list_id race title Ottawa
7310 UPDATE `list_options` SET `notes` = '1411-8' WHERE `title` = 'Ottawa' AND `list_id` = 'race';
7313 #IfNotRow2Dx2 list_options list_id race option_id ouzinkie title Ouzinkie
7314 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ouzinkie','Ouzinkie','5800', '0',' 1999-2', 0);
7317 #IfRow2D list_options list_id race option_id ouzinkie
7318 UPDATE `list_options` SET `notes` = '1999-2' WHERE `option_id` = 'ouzinkie' AND `list_id` = 'race';
7321 #IfRow2D list_options list_id race title Ouzinkie
7322 UPDATE `list_options` SET `notes` = '1999-2' WHERE `title` = 'Ouzinkie' AND `list_id` = 'race';
7325 #IfNotRow2Dx2 list_options list_id race option_id owens_valley title Owens Valley
7326 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','owens_valley','Owens Valley','5810', '0',' 1430-8', 0);
7329 #IfRow2D list_options list_id race option_id owens_valley
7330 UPDATE `list_options` SET `notes` = '1430-8' WHERE `option_id` = 'owens_valley' AND `list_id` = 'race';
7333 #IfRow2D list_options list_id race title Owens Valley
7334 UPDATE `list_options` SET `notes` = '1430-8' WHERE `title` = 'Owens Valley' AND `list_id` = 'race';
7337 #IfNotRow2Dx2 list_options list_id race option_id paiute title Paiute
7338 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','paiute','Paiute','5820', '0',' 1416-7', 0);
7341 #IfRow2D list_options list_id race option_id paiute
7342 UPDATE `list_options` SET `notes` = '1416-7' WHERE `option_id` = 'paiute' AND `list_id` = 'race';
7345 #IfRow2D list_options list_id race title Paiute
7346 UPDATE `list_options` SET `notes` = '1416-7' WHERE `title` = 'Paiute' AND `list_id` = 'race';
7349 #IfNotRow2Dx2 list_options list_id race option_id pakistani title Pakistani
7350 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pakistani','Pakistani','5830', '0',' 2044-6', 0);
7353 #IfRow2D list_options list_id race option_id pakistani
7354 UPDATE `list_options` SET `notes` = '2044-6' WHERE `option_id` = 'pakistani' AND `list_id` = 'race';
7357 #IfRow2D list_options list_id race title Pakistani
7358 UPDATE `list_options` SET `notes` = '2044-6' WHERE `title` = 'Pakistani' AND `list_id` = 'race';
7361 #IfNotRow2Dx2 list_options list_id race option_id pala title Pala
7362 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pala','Pala','5840', '0',' 1333-4', 0);
7365 #IfRow2D list_options list_id race option_id pala
7366 UPDATE `list_options` SET `notes` = '1333-4' WHERE `option_id` = 'pala' AND `list_id` = 'race';
7369 #IfRow2D list_options list_id race title Pala
7370 UPDATE `list_options` SET `notes` = '1333-4' WHERE `title` = 'Pala' AND `list_id` = 'race';
7373 #IfNotRow2Dx2 list_options list_id race option_id palauan title Palauan
7374 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','palauan','Palauan','5850', '0',' 2091-7', 0);
7377 #IfRow2D list_options list_id race option_id palauan
7378 UPDATE `list_options` SET `notes` = '2091-7' WHERE `option_id` = 'palauan' AND `list_id` = 'race';
7381 #IfRow2D list_options list_id race title Palauan
7382 UPDATE `list_options` SET `notes` = '2091-7' WHERE `title` = 'Palauan' AND `list_id` = 'race';
7385 #IfNotRow2Dx2 list_options list_id race option_id palestinian title Palestinian
7386 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','palestinian','Palestinian','5860', '0',' 2124-6', 0);
7389 #IfRow2D list_options list_id race option_id palestinian
7390 UPDATE `list_options` SET `notes` = '2124-6' WHERE `option_id` = 'palestinian' AND `list_id` = 'race';
7393 #IfRow2D list_options list_id race title Palestinian
7394 UPDATE `list_options` SET `notes` = '2124-6' WHERE `title` = 'Palestinian' AND `list_id` = 'race';
7397 #IfNotRow2Dx2 list_options list_id race option_id pamunkey title Pamunkey
7398 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pamunkey','Pamunkey','5870', '0',' 1439-9', 0);
7401 #IfRow2D list_options list_id race option_id pamunkey
7402 UPDATE `list_options` SET `notes` = '1439-9' WHERE `option_id` = 'pamunkey' AND `list_id` = 'race';
7405 #IfRow2D list_options list_id race title Pamunkey
7406 UPDATE `list_options` SET `notes` = '1439-9' WHERE `title` = 'Pamunkey' AND `list_id` = 'race';
7409 #IfNotRow2Dx2 list_options list_id race option_id panamint title Panamint
7410 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','panamint','Panamint','5880', '0',' 1592-5', 0);
7413 #IfRow2D list_options list_id race option_id panamint
7414 UPDATE `list_options` SET `notes` = '1592-5' WHERE `option_id` = 'panamint' AND `list_id` = 'race';
7417 #IfRow2D list_options list_id race title Panamint
7418 UPDATE `list_options` SET `notes` = '1592-5' WHERE `title` = 'Panamint' AND `list_id` = 'race';
7421 #IfNotRow2Dx2 list_options list_id race option_id papua_new_guinean title Papua New Guinean
7422 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','papua_new_guinean','Papua New Guinean','5890', '0',' 2102-2', 0);
7425 #IfRow2D list_options list_id race option_id papua_new_guinean
7426 UPDATE `list_options` SET `notes` = '2102-2' WHERE `option_id` = 'papua_new_guinean' AND `list_id` = 'race';
7429 #IfRow2D list_options list_id race title Papua New Guinean
7430 UPDATE `list_options` SET `notes` = '2102-2' WHERE `title` = 'Papua New Guinean' AND `list_id` = 'race';
7433 #IfNotRow2Dx2 list_options list_id race option_id pascua_yaqui title Pascua Yaqui
7434 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pascua_yaqui','Pascua Yaqui','5900', '0',' 1713-7', 0);
7437 #IfRow2D list_options list_id race option_id pascua_yaqui
7438 UPDATE `list_options` SET `notes` = '1713-7' WHERE `option_id` = 'pascua_yaqui' AND `list_id` = 'race';
7441 #IfRow2D list_options list_id race title Pascua Yaqui
7442 UPDATE `list_options` SET `notes` = '1713-7' WHERE `title` = 'Pascua Yaqui' AND `list_id` = 'race';
7445 #IfNotRow2Dx2 list_options list_id race option_id passamaquoddy title Passamaquoddy
7446 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','passamaquoddy','Passamaquoddy','5910', '0',' 1441-5', 0);
7449 #IfRow2D list_options list_id race option_id passamaquoddy
7450 UPDATE `list_options` SET `notes` = '1441-5' WHERE `option_id` = 'passamaquoddy' AND `list_id` = 'race';
7453 #IfRow2D list_options list_id race title Passamaquoddy
7454 UPDATE `list_options` SET `notes` = '1441-5' WHERE `title` = 'Passamaquoddy' AND `list_id` = 'race';
7457 #IfNotRow2Dx2 list_options list_id race option_id paugussett title Paugussett
7458 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','paugussett','Paugussett','5920', '0',' 1242-7', 0);
7461 #IfRow2D list_options list_id race option_id paugussett
7462 UPDATE `list_options` SET `notes` = '1242-7' WHERE `option_id` = 'paugussett' AND `list_id` = 'race';
7465 #IfRow2D list_options list_id race title Paugussett
7466 UPDATE `list_options` SET `notes` = '1242-7' WHERE `title` = 'Paugussett' AND `list_id` = 'race';
7469 #IfNotRow2Dx2 list_options list_id race option_id pauloff_harbor title Pauloff Harbor
7470 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pauloff_harbor','Pauloff Harbor','5930', '0',' 2018-0', 0);
7473 #IfRow2D list_options list_id race option_id pauloff_harbor
7474 UPDATE `list_options` SET `notes` = '2018-0' WHERE `option_id` = 'pauloff_harbor' AND `list_id` = 'race';
7477 #IfRow2D list_options list_id race title Pauloff Harbor
7478 UPDATE `list_options` SET `notes` = '2018-0' WHERE `title` = 'Pauloff Harbor' AND `list_id` = 'race';
7481 #IfNotRow2Dx2 list_options list_id race option_id pauma title Pauma
7482 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pauma','Pauma','5940', '0',' 1334-2', 0);
7485 #IfRow2D list_options list_id race option_id pauma
7486 UPDATE `list_options` SET `notes` = '1334-2' WHERE `option_id` = 'pauma' AND `list_id` = 'race';
7489 #IfRow2D list_options list_id race title Pauma
7490 UPDATE `list_options` SET `notes` = '1334-2' WHERE `title` = 'Pauma' AND `list_id` = 'race';
7493 #IfNotRow2Dx2 list_options list_id race option_id pawnee title Pawnee
7494 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pawnee','Pawnee','5950', '0',' 1445-6', 0);
7497 #IfRow2D list_options list_id race option_id pawnee
7498 UPDATE `list_options` SET `notes` = '1445-6' WHERE `option_id` = 'pawnee' AND `list_id` = 'race';
7501 #IfRow2D list_options list_id race title Pawnee
7502 UPDATE `list_options` SET `notes` = '1445-6' WHERE `title` = 'Pawnee' AND `list_id` = 'race';
7505 #IfNotRow2Dx2 list_options list_id race option_id payson_apache title Payson Apache
7506 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','payson_apache','Payson Apache','5960', '0',' 1017-3', 0);
7509 #IfRow2D list_options list_id race option_id payson_apache
7510 UPDATE `list_options` SET `notes` = '1017-3' WHERE `option_id` = 'payson_apache' AND `list_id` = 'race';
7513 #IfRow2D list_options list_id race title Payson Apache
7514 UPDATE `list_options` SET `notes` = '1017-3' WHERE `title` = 'Payson Apache' AND `list_id` = 'race';
7517 #IfNotRow2Dx2 list_options list_id race option_id pechanga title Pechanga
7518 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pechanga','Pechanga','5970', '0',' 1335-9', 0);
7521 #IfRow2D list_options list_id race option_id pechanga
7522 UPDATE `list_options` SET `notes` = '1335-9' WHERE `option_id` = 'pechanga' AND `list_id` = 'race';
7525 #IfRow2D list_options list_id race title Pechanga
7526 UPDATE `list_options` SET `notes` = '1335-9' WHERE `title` = 'Pechanga' AND `list_id` = 'race';
7529 #IfNotRow2Dx2 list_options list_id race option_id pedro_bay title Pedro Bay
7530 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pedro_bay','Pedro Bay','5980', '0',' 1789-7', 0);
7533 #IfRow2D list_options list_id race option_id pedro_bay
7534 UPDATE `list_options` SET `notes` = '1789-7' WHERE `option_id` = 'pedro_bay' AND `list_id` = 'race';
7537 #IfRow2D list_options list_id race title Pedro Bay
7538 UPDATE `list_options` SET `notes` = '1789-7' WHERE `title` = 'Pedro Bay' AND `list_id` = 'race';
7541 #IfNotRow2Dx2 list_options list_id race option_id pelican title Pelican
7542 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pelican','Pelican','5990', '0',' 1828-3', 0);
7545 #IfRow2D list_options list_id race option_id pelican
7546 UPDATE `list_options` SET `notes` = '1828-3' WHERE `option_id` = 'pelican' AND `list_id` = 'race';
7549 #IfRow2D list_options list_id race title Pelican
7550 UPDATE `list_options` SET `notes` = '1828-3' WHERE `title` = 'Pelican' AND `list_id` = 'race';
7553 #IfNotRow2Dx2 list_options list_id race option_id penobscot title Penobscot
7554 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','penobscot','Penobscot','6000', '0',' 1448-0', 0);
7557 #IfRow2D list_options list_id race option_id penobscot
7558 UPDATE `list_options` SET `notes` = '1448-0' WHERE `option_id` = 'penobscot' AND `list_id` = 'race';
7561 #IfRow2D list_options list_id race title Penobscot
7562 UPDATE `list_options` SET `notes` = '1448-0' WHERE `title` = 'Penobscot' AND `list_id` = 'race';
7565 #IfNotRow2Dx2 list_options list_id race option_id peoria title Peoria
7566 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','peoria','Peoria','6010', '0',' 1450-6', 0);
7569 #IfRow2D list_options list_id race option_id peoria
7570 UPDATE `list_options` SET `notes` = '1450-6' WHERE `option_id` = 'peoria' AND `list_id` = 'race';
7573 #IfRow2D list_options list_id race title Peoria
7574 UPDATE `list_options` SET `notes` = '1450-6' WHERE `title` = 'Peoria' AND `list_id` = 'race';
7577 #IfNotRow2Dx2 list_options list_id race option_id pequot title Pequot
7578 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pequot','Pequot','6020', '0',' 1453-0', 0);
7581 #IfRow2D list_options list_id race option_id pequot
7582 UPDATE `list_options` SET `notes` = '1453-0' WHERE `option_id` = 'pequot' AND `list_id` = 'race';
7585 #IfRow2D list_options list_id race title Pequot
7586 UPDATE `list_options` SET `notes` = '1453-0' WHERE `title` = 'Pequot' AND `list_id` = 'race';
7589 #IfNotRow2Dx2 list_options list_id race option_id perryville title Perryville
7590 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','perryville','Perryville','6030', '0',' 1980-2', 0);
7593 #IfRow2D list_options list_id race option_id perryville
7594 UPDATE `list_options` SET `notes` = '1980-2' WHERE `option_id` = 'perryville' AND `list_id` = 'race';
7597 #IfRow2D list_options list_id race title Perryville
7598 UPDATE `list_options` SET `notes` = '1980-2' WHERE `title` = 'Perryville' AND `list_id` = 'race';
7601 #IfNotRow2Dx2 list_options list_id race option_id petersburg title Petersburg
7602 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','petersburg','Petersburg','6040', '0',' 1829-1', 0);
7605 #IfRow2D list_options list_id race option_id petersburg
7606 UPDATE `list_options` SET `notes` = '1829-1' WHERE `option_id` = 'petersburg' AND `list_id` = 'race';
7609 #IfRow2D list_options list_id race title Petersburg
7610 UPDATE `list_options` SET `notes` = '1829-1' WHERE `title` = 'Petersburg' AND `list_id` = 'race';
7613 #IfNotRow2Dx2 list_options list_id race option_id picuris title Picuris
7614 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','picuris','Picuris','6050', '0',' 1499-3', 0);
7617 #IfRow2D list_options list_id race option_id picuris
7618 UPDATE `list_options` SET `notes` = '1499-3' WHERE `option_id` = 'picuris' AND `list_id` = 'race';
7621 #IfRow2D list_options list_id race title Picuris
7622 UPDATE `list_options` SET `notes` = '1499-3' WHERE `title` = 'Picuris' AND `list_id` = 'race';
7625 #IfNotRow2Dx2 list_options list_id race option_id pilot_point title Pilot Point
7626 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pilot_point','Pilot Point','6060', '0',' 1981-0', 0);
7629 #IfRow2D list_options list_id race option_id pilot_point
7630 UPDATE `list_options` SET `notes` = '1981-0' WHERE `option_id` = 'pilot_point' AND `list_id` = 'race';
7633 #IfRow2D list_options list_id race title Pilot Point
7634 UPDATE `list_options` SET `notes` = '1981-0' WHERE `title` = 'Pilot Point' AND `list_id` = 'race';
7637 #IfNotRow2Dx2 list_options list_id race option_id pilot_station title Pilot Station
7638 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pilot_station','Pilot Station','6070', '0',' 1945-5', 0);
7641 #IfRow2D list_options list_id race option_id pilot_station
7642 UPDATE `list_options` SET `notes` = '1945-5' WHERE `option_id` = 'pilot_station' AND `list_id` = 'race';
7645 #IfRow2D list_options list_id race title Pilot Station
7646 UPDATE `list_options` SET `notes` = '1945-5' WHERE `title` = 'Pilot Station' AND `list_id` = 'race';
7649 #IfNotRow2Dx2 list_options list_id race option_id pima title Pima
7650 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pima','Pima','6080', '0',' 1456-3', 0);
7653 #IfRow2D list_options list_id race option_id pima
7654 UPDATE `list_options` SET `notes` = '1456-3' WHERE `option_id` = 'pima' AND `list_id` = 'race';
7657 #IfRow2D list_options list_id race title Pima
7658 UPDATE `list_options` SET `notes` = '1456-3' WHERE `title` = 'Pima' AND `list_id` = 'race';
7661 #IfNotRow2Dx2 list_options list_id race option_id pine_ridge_sioux title Pine Ridge Sioux
7662 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pine_ridge_sioux','Pine Ridge Sioux','6090', '0',' 1623-8', 0);
7665 #IfRow2D list_options list_id race option_id pine_ridge_sioux
7666 UPDATE `list_options` SET `notes` = '1623-8' WHERE `option_id` = 'pine_ridge_sioux' AND `list_id` = 'race';
7669 #IfRow2D list_options list_id race title Pine Ridge Sioux
7670 UPDATE `list_options` SET `notes` = '1623-8' WHERE `title` = 'Pine Ridge Sioux' AND `list_id` = 'race';
7673 #IfNotRow2Dx2 list_options list_id race option_id pipestone_sioux title Pipestone Sioux
7674 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pipestone_sioux','Pipestone Sioux','6100', '0',' 1624-6', 0);
7677 #IfRow2D list_options list_id race option_id pipestone_sioux
7678 UPDATE `list_options` SET `notes` = '1624-6' WHERE `option_id` = 'pipestone_sioux' AND `list_id` = 'race';
7681 #IfRow2D list_options list_id race title Pipestone Sioux
7682 UPDATE `list_options` SET `notes` = '1624-6' WHERE `title` = 'Pipestone Sioux' AND `list_id` = 'race';
7685 #IfNotRow2Dx2 list_options list_id race option_id piro title Piro
7686 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','piro','Piro','6110', '0',' 1500-8', 0);
7689 #IfRow2D list_options list_id race option_id piro
7690 UPDATE `list_options` SET `notes` = '1500-8' WHERE `option_id` = 'piro' AND `list_id` = 'race';
7693 #IfRow2D list_options list_id race title Piro
7694 UPDATE `list_options` SET `notes` = '1500-8' WHERE `title` = 'Piro' AND `list_id` = 'race';
7697 #IfNotRow2Dx2 list_options list_id race option_id piscataway title Piscataway
7698 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','piscataway','Piscataway','6120', '0',' 1460-5', 0);
7701 #IfRow2D list_options list_id race option_id piscataway
7702 UPDATE `list_options` SET `notes` = '1460-5' WHERE `option_id` = 'piscataway' AND `list_id` = 'race';
7705 #IfRow2D list_options list_id race title Piscataway
7706 UPDATE `list_options` SET `notes` = '1460-5' WHERE `title` = 'Piscataway' AND `list_id` = 'race';
7709 #IfNotRow2Dx2 list_options list_id race option_id pit_river title Pit River
7710 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pit_river','Pit River','6130', '0',' 1462-1', 0);
7713 #IfRow2D list_options list_id race option_id pit_river
7714 UPDATE `list_options` SET `notes` = '1462-1' WHERE `option_id` = 'pit_river' AND `list_id` = 'race';
7717 #IfRow2D list_options list_id race title Pit River
7718 UPDATE `list_options` SET `notes` = '1462-1' WHERE `title` = 'Pit River' AND `list_id` = 'race';
7721 #IfNotRow2Dx2 list_options list_id race option_id pitkas_point title Pitkas Point
7722 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pitkas_point','Pitkas Point','6140', '0',' 1946-3', 0);
7725 #IfRow2D list_options list_id race option_id pitkas_point
7726 UPDATE `list_options` SET `notes` = '1946-3' WHERE `option_id` = 'pitkas_point' AND `list_id` = 'race';
7729 #IfRow2D list_options list_id race title Pitkas Point
7730 UPDATE `list_options` SET `notes` = '1946-3' WHERE `title` = 'Pitkas Point' AND `list_id` = 'race';
7733 #IfNotRow2Dx2 list_options list_id race option_id platinum title Platinum
7734 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','platinum','Platinum','6150', '0',' 1947-1', 0);
7737 #IfRow2D list_options list_id race option_id platinum
7738 UPDATE `list_options` SET `notes` = '1947-1' WHERE `option_id` = 'platinum' AND `list_id` = 'race';
7741 #IfRow2D list_options list_id race title Platinum
7742 UPDATE `list_options` SET `notes` = '1947-1' WHERE `title` = 'Platinum' AND `list_id` = 'race';
7745 #IfNotRow2Dx2 list_options list_id race option_id pleasant_point_passamaquoddy title Pleasant Point Passamaquoddy
7746 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pleasant_point_passamaquoddy','Pleasant Point Passamaquoddy','6160', '0',' 1443-1', 0);
7749 #IfRow2D list_options list_id race option_id pleasant_point_passamaquoddy
7750 UPDATE `list_options` SET `notes` = '1443-1' WHERE `option_id` = 'pleasant_point_passamaquoddy' AND `list_id` = 'race';
7753 #IfRow2D list_options list_id race title Pleasant Point Passamaquoddy
7754 UPDATE `list_options` SET `notes` = '1443-1' WHERE `title` = 'Pleasant Point Passamaquoddy' AND `list_id` = 'race';
7757 #IfNotRow2Dx2 list_options list_id race option_id poarch_band title Poarch Band
7758 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','poarch_band','Poarch Band','6170', '0',' 1201-3', 0);
7761 #IfRow2D list_options list_id race option_id poarch_band
7762 UPDATE `list_options` SET `notes` = '1201-3' WHERE `option_id` = 'poarch_band' AND `list_id` = 'race';
7765 #IfRow2D list_options list_id race title Poarch Band
7766 UPDATE `list_options` SET `notes` = '1201-3' WHERE `title` = 'Poarch Band' AND `list_id` = 'race';
7769 #IfNotRow2Dx2 list_options list_id race option_id pocomoke_acohonock title Pocomoke Acohonock
7770 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pocomoke_acohonock','Pocomoke Acohonock','6180', '0',' 1243-5', 0);
7773 #IfRow2D list_options list_id race option_id pocomoke_acohonock
7774 UPDATE `list_options` SET `notes` = '1243-5' WHERE `option_id` = 'pocomoke_acohonock' AND `list_id` = 'race';
7777 #IfRow2D list_options list_id race title Pocomoke Acohonock
7778 UPDATE `list_options` SET `notes` = '1243-5' WHERE `title` = 'Pocomoke Acohonock' AND `list_id` = 'race';
7781 #IfNotRow2Dx2 list_options list_id race option_id pohnpeian title Pohnpeian
7782 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pohnpeian','Pohnpeian','6190', '0',' 2094-1', 0);
7785 #IfRow2D list_options list_id race option_id pohnpeian
7786 UPDATE `list_options` SET `notes` = '2094-1' WHERE `option_id` = 'pohnpeian' AND `list_id` = 'race';
7789 #IfRow2D list_options list_id race title Pohnpeian
7790 UPDATE `list_options` SET `notes` = '2094-1' WHERE `title` = 'Pohnpeian' AND `list_id` = 'race';
7793 #IfNotRow2Dx2 list_options list_id race option_id point_hope title Point Hope
7794 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','point_hope','Point Hope','6200', '0',' 1876-2', 0);
7797 #IfRow2D list_options list_id race option_id point_hope
7798 UPDATE `list_options` SET `notes` = '1876-2' WHERE `option_id` = 'point_hope' AND `list_id` = 'race';
7801 #IfRow2D list_options list_id race title Point Hope
7802 UPDATE `list_options` SET `notes` = '1876-2' WHERE `title` = 'Point Hope' AND `list_id` = 'race';
7805 #IfNotRow2Dx2 list_options list_id race option_id point_lay title Point Lay
7806 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','point_lay','Point Lay','6210', '0',' 1877-0', 0);
7809 #IfRow2D list_options list_id race option_id point_lay
7810 UPDATE `list_options` SET `notes` = '1877-0' WHERE `option_id` = 'point_lay' AND `list_id` = 'race';
7813 #IfRow2D list_options list_id race title Point Lay
7814 UPDATE `list_options` SET `notes` = '1877-0' WHERE `title` = 'Point Lay' AND `list_id` = 'race';
7817 #IfNotRow2Dx2 list_options list_id race option_id pojoaque title Pojoaque
7818 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pojoaque','Pojoaque','6220', '0',' 1501-6', 0);
7821 #IfRow2D list_options list_id race option_id pojoaque
7822 UPDATE `list_options` SET `notes` = '1501-6' WHERE `option_id` = 'pojoaque' AND `list_id` = 'race';
7825 #IfRow2D list_options list_id race title Pojoaque
7826 UPDATE `list_options` SET `notes` = '1501-6' WHERE `title` = 'Pojoaque' AND `list_id` = 'race';
7829 #IfNotRow2Dx2 list_options list_id race option_id pokagon_potawatomi title Pokagon Potawatomi
7830 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pokagon_potawatomi','Pokagon Potawatomi','6230', '0',' 1483-7', 0);
7833 #IfRow2D list_options list_id race option_id pokagon_potawatomi
7834 UPDATE `list_options` SET `notes` = '1483-7' WHERE `option_id` = 'pokagon_potawatomi' AND `list_id` = 'race';
7837 #IfRow2D list_options list_id race title Pokagon Potawatomi
7838 UPDATE `list_options` SET `notes` = '1483-7' WHERE `title` = 'Pokagon Potawatomi' AND `list_id` = 'race';
7841 #IfNotRow2Dx2 list_options list_id race option_id polish title Polish
7842 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','polish','Polish','6240', '0',' 2115-4', 0);
7845 #IfRow2D list_options list_id race option_id polish
7846 UPDATE `list_options` SET `notes` = '2115-4' WHERE `option_id` = 'polish' AND `list_id` = 'race';
7849 #IfRow2D list_options list_id race title Polish
7850 UPDATE `list_options` SET `notes` = '2115-4' WHERE `title` = 'Polish' AND `list_id` = 'race';
7853 #IfNotRow2Dx2 list_options list_id race option_id polynesian title Polynesian
7854 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','polynesian','Polynesian','6250', '0',' 2078-4', 0);
7857 #IfRow2D list_options list_id race option_id polynesian
7858 UPDATE `list_options` SET `notes` = '2078-4' WHERE `option_id` = 'polynesian' AND `list_id` = 'race';
7861 #IfRow2D list_options list_id race title Polynesian
7862 UPDATE `list_options` SET `notes` = '2078-4' WHERE `title` = 'Polynesian' AND `list_id` = 'race';
7865 #IfNotRow2Dx2 list_options list_id race option_id pomo title Pomo
7866 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pomo','Pomo','6260', '0',' 1464-7', 0);
7869 #IfRow2D list_options list_id race option_id pomo
7870 UPDATE `list_options` SET `notes` = '1464-7' WHERE `option_id` = 'pomo' AND `list_id` = 'race';
7873 #IfRow2D list_options list_id race title Pomo
7874 UPDATE `list_options` SET `notes` = '1464-7' WHERE `title` = 'Pomo' AND `list_id` = 'race';
7877 #IfNotRow2Dx2 list_options list_id race option_id ponca title Ponca
7878 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ponca','Ponca','6270', '0',' 1474-6', 0);
7881 #IfRow2D list_options list_id race option_id ponca
7882 UPDATE `list_options` SET `notes` = '1474-6' WHERE `option_id` = 'ponca' AND `list_id` = 'race';
7885 #IfRow2D list_options list_id race title Ponca
7886 UPDATE `list_options` SET `notes` = '1474-6' WHERE `title` = 'Ponca' AND `list_id` = 'race';
7889 #IfNotRow2Dx2 list_options list_id race option_id poospatuck title Poospatuck
7890 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','poospatuck','Poospatuck','6280', '0',' 1328-4', 0);
7893 #IfRow2D list_options list_id race option_id poospatuck
7894 UPDATE `list_options` SET `notes` = '1328-4' WHERE `option_id` = 'poospatuck' AND `list_id` = 'race';
7897 #IfRow2D list_options list_id race title Poospatuck
7898 UPDATE `list_options` SET `notes` = '1328-4' WHERE `title` = 'Poospatuck' AND `list_id` = 'race';
7901 #IfNotRow2Dx2 list_options list_id race option_id port_gamble_klallam title Port Gamble Klallam
7902 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','port_gamble_klallam','Port Gamble Klallam','6290', '0',' 1315-1', 0);
7905 #IfRow2D list_options list_id race option_id port_gamble_klallam
7906 UPDATE `list_options` SET `notes` = '1315-1' WHERE `option_id` = 'port_gamble_klallam' AND `list_id` = 'race';
7909 #IfRow2D list_options list_id race title Port Gamble Klallam
7910 UPDATE `list_options` SET `notes` = '1315-1' WHERE `title` = 'Port Gamble Klallam' AND `list_id` = 'race';
7913 #IfNotRow2Dx2 list_options list_id race option_id port_graham title Port Graham
7914 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','port_graham','Port Graham','6300', '0',' 1988-5', 0);
7917 #IfRow2D list_options list_id race option_id port_graham
7918 UPDATE `list_options` SET `notes` = '1988-5' WHERE `option_id` = 'port_graham' AND `list_id` = 'race';
7921 #IfRow2D list_options list_id race title Port Graham
7922 UPDATE `list_options` SET `notes` = '1988-5' WHERE `title` = 'Port Graham' AND `list_id` = 'race';
7925 #IfNotRow2Dx2 list_options list_id race option_id port_heiden title Port Heiden
7926 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','port_heiden','Port Heiden','6310', '0',' 1982-8', 0);
7929 #IfRow2D list_options list_id race option_id port_heiden
7930 UPDATE `list_options` SET `notes` = '1982-8' WHERE `option_id` = 'port_heiden' AND `list_id` = 'race';
7933 #IfRow2D list_options list_id race title Port Heiden
7934 UPDATE `list_options` SET `notes` = '1982-8' WHERE `title` = 'Port Heiden' AND `list_id` = 'race';
7937 #IfNotRow2Dx2 list_options list_id race option_id port_lions title Port Lions
7938 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','port_lions','Port Lions','6320', '0',' 2000-8', 0);
7941 #IfRow2D list_options list_id race option_id port_lions
7942 UPDATE `list_options` SET `notes` = '2000-8' WHERE `option_id` = 'port_lions' AND `list_id` = 'race';
7945 #IfRow2D list_options list_id race title Port Lions
7946 UPDATE `list_options` SET `notes` = '2000-8' WHERE `title` = 'Port Lions' AND `list_id` = 'race';
7949 #IfNotRow2Dx2 list_options list_id race option_id port_madison title Port Madison
7950 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','port_madison','Port Madison','6330', '0',' 1525-5', 0);
7953 #IfRow2D list_options list_id race option_id port_madison
7954 UPDATE `list_options` SET `notes` = '1525-5' WHERE `option_id` = 'port_madison' AND `list_id` = 'race';
7957 #IfRow2D list_options list_id race title Port Madison
7958 UPDATE `list_options` SET `notes` = '1525-5' WHERE `title` = 'Port Madison' AND `list_id` = 'race';
7961 #IfNotRow2Dx2 list_options list_id race option_id portage_creek title Portage Creek
7962 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','portage_creek','Portage Creek','6340', '0',' 1948-9', 0);
7965 #IfRow2D list_options list_id race option_id portage_creek
7966 UPDATE `list_options` SET `notes` = '1948-9' WHERE `option_id` = 'portage_creek' AND `list_id` = 'race';
7969 #IfRow2D list_options list_id race title Portage Creek
7970 UPDATE `list_options` SET `notes` = '1948-9' WHERE `title` = 'Portage Creek' AND `list_id` = 'race';
7973 #IfNotRow2Dx2 list_options list_id race option_id potawatomi title Potawatomi
7974 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','potawatomi','Potawatomi','6350', '0',' 1478-7', 0);
7977 #IfRow2D list_options list_id race option_id potawatomi
7978 UPDATE `list_options` SET `notes` = '1478-7' WHERE `option_id` = 'potawatomi' AND `list_id` = 'race';
7981 #IfRow2D list_options list_id race title Potawatomi
7982 UPDATE `list_options` SET `notes` = '1478-7' WHERE `title` = 'Potawatomi' AND `list_id` = 'race';
7985 #IfNotRow2Dx2 list_options list_id race option_id powhatan title Powhatan
7986 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','powhatan','Powhatan','6360', '0',' 1487-8', 0);
7989 #IfRow2D list_options list_id race option_id powhatan
7990 UPDATE `list_options` SET `notes` = '1487-8' WHERE `option_id` = 'powhatan' AND `list_id` = 'race';
7993 #IfRow2D list_options list_id race title Powhatan
7994 UPDATE `list_options` SET `notes` = '1487-8' WHERE `title` = 'Powhatan' AND `list_id` = 'race';
7997 #IfNotRow2Dx2 list_options list_id race option_id prairie_band title Prairie Band
7998 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','prairie_band','Prairie Band','6370', '0',' 1484-5', 0);
8001 #IfRow2D list_options list_id race option_id prairie_band
8002 UPDATE `list_options` SET `notes` = '1484-5' WHERE `option_id` = 'prairie_band' AND `list_id` = 'race';
8005 #IfRow2D list_options list_id race title Prairie Band
8006 UPDATE `list_options` SET `notes` = '1484-5' WHERE `title` = 'Prairie Band' AND `list_id` = 'race';
8009 #IfNotRow2Dx2 list_options list_id race option_id prairie_island_sioux title Prairie Island Sioux
8010 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','prairie_island_sioux','Prairie Island Sioux','6380', '0',' 1625-3', 0);
8013 #IfRow2D list_options list_id race option_id prairie_island_sioux
8014 UPDATE `list_options` SET `notes` = '1625-3' WHERE `option_id` = 'prairie_island_sioux' AND `list_id` = 'race';
8017 #IfRow2D list_options list_id race title Prairie Island Sioux
8018 UPDATE `list_options` SET `notes` = '1625-3' WHERE `title` = 'Prairie Island Sioux' AND `list_id` = 'race';
8021 #IfNotRow2Dx2 list_options list_id race option_id principal_creek_indian_nation title Principal Creek Indian Nation
8022 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','principal_creek_indian_nation','Principal Creek Indian Nation','6390', '0',' 1202-1', 0);
8025 #IfRow2D list_options list_id race option_id principal_creek_indian_nation
8026 UPDATE `list_options` SET `notes` = '1202-1' WHERE `option_id` = 'principal_creek_indian_nation' AND `list_id` = 'race';
8029 #IfRow2D list_options list_id race title Principal Creek Indian Nation
8030 UPDATE `list_options` SET `notes` = '1202-1' WHERE `title` = 'Principal Creek Indian Nation' AND `list_id` = 'race';
8033 #IfNotRow2Dx2 list_options list_id race option_id prior_lake_sioux title Prior Lake Sioux
8034 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','prior_lake_sioux','Prior Lake Sioux','6400', '0',' 1626-1', 0);
8037 #IfRow2D list_options list_id race option_id prior_lake_sioux
8038 UPDATE `list_options` SET `notes` = '1626-1' WHERE `option_id` = 'prior_lake_sioux' AND `list_id` = 'race';
8041 #IfRow2D list_options list_id race title Prior Lake Sioux
8042 UPDATE `list_options` SET `notes` = '1626-1' WHERE `title` = 'Prior Lake Sioux' AND `list_id` = 'race';
8045 #IfNotRow2Dx2 list_options list_id race option_id pueblo title Pueblo
8046 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pueblo','Pueblo','6410', '0',' 1489-4', 0);
8049 #IfRow2D list_options list_id race option_id pueblo
8050 UPDATE `list_options` SET `notes` = '1489-4' WHERE `option_id` = 'pueblo' AND `list_id` = 'race';
8053 #IfRow2D list_options list_id race title Pueblo
8054 UPDATE `list_options` SET `notes` = '1489-4' WHERE `title` = 'Pueblo' AND `list_id` = 'race';
8057 #IfNotRow2Dx2 list_options list_id race option_id puget_sound_salish title Puget Sound Salish
8058 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','puget_sound_salish','Puget Sound Salish','6420', '0',' 1518-0', 0);
8061 #IfRow2D list_options list_id race option_id puget_sound_salish
8062 UPDATE `list_options` SET `notes` = '1518-0' WHERE `option_id` = 'puget_sound_salish' AND `list_id` = 'race';
8065 #IfRow2D list_options list_id race title Puget Sound Salish
8066 UPDATE `list_options` SET `notes` = '1518-0' WHERE `title` = 'Puget Sound Salish' AND `list_id` = 'race';
8069 #IfNotRow2Dx2 list_options list_id race option_id puyallup title Puyallup
8070 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','puyallup','Puyallup','6430', '0',' 1526-3', 0);
8073 #IfRow2D list_options list_id race option_id puyallup
8074 UPDATE `list_options` SET `notes` = '1526-3' WHERE `option_id` = 'puyallup' AND `list_id` = 'race';
8077 #IfRow2D list_options list_id race title Puyallup
8078 UPDATE `list_options` SET `notes` = '1526-3' WHERE `title` = 'Puyallup' AND `list_id` = 'race';
8081 #IfNotRow2Dx2 list_options list_id race option_id pyramid_lake title Pyramid Lake
8082 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','pyramid_lake','Pyramid Lake','6440', '0',' 1431-6', 0);
8085 #IfRow2D list_options list_id race option_id pyramid_lake
8086 UPDATE `list_options` SET `notes` = '1431-6' WHERE `option_id` = 'pyramid_lake' AND `list_id` = 'race';
8089 #IfRow2D list_options list_id race title Pyramid Lake
8090 UPDATE `list_options` SET `notes` = '1431-6' WHERE `title` = 'Pyramid Lake' AND `list_id` = 'race';
8093 #IfNotRow2Dx2 list_options list_id race option_id qagan_toyagungin title Qagan Toyagungin
8094 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','qagan_toyagungin','Qagan Toyagungin','6450', '0',' 2019-8', 0);
8097 #IfRow2D list_options list_id race option_id qagan_toyagungin
8098 UPDATE `list_options` SET `notes` = '2019-8' WHERE `option_id` = 'qagan_toyagungin' AND `list_id` = 'race';
8101 #IfRow2D list_options list_id race title Qagan Toyagungin
8102 UPDATE `list_options` SET `notes` = '2019-8' WHERE `title` = 'Qagan Toyagungin' AND `list_id` = 'race';
8105 #IfNotRow2Dx2 list_options list_id race option_id qawalangin title Qawalangin
8106 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','qawalangin','Qawalangin','6460', '0',' 2020-6', 0);
8109 #IfRow2D list_options list_id race option_id qawalangin
8110 UPDATE `list_options` SET `notes` = '2020-6' WHERE `option_id` = 'qawalangin' AND `list_id` = 'race';
8113 #IfRow2D list_options list_id race title Qawalangin
8114 UPDATE `list_options` SET `notes` = '2020-6' WHERE `title` = 'Qawalangin' AND `list_id` = 'race';
8117 #IfNotRow2Dx2 list_options list_id race option_id quapaw title Quapaw
8118 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','quapaw','Quapaw','6470', '0',' 1541-2', 0);
8121 #IfRow2D list_options list_id race option_id quapaw
8122 UPDATE `list_options` SET `notes` = '1541-2' WHERE `option_id` = 'quapaw' AND `list_id` = 'race';
8125 #IfRow2D list_options list_id race title Quapaw
8126 UPDATE `list_options` SET `notes` = '1541-2' WHERE `title` = 'Quapaw' AND `list_id` = 'race';
8129 #IfNotRow2Dx2 list_options list_id race option_id quechan title Quechan
8130 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','quechan','Quechan','6480', '0',' 1730-1', 0);
8133 #IfRow2D list_options list_id race option_id quechan
8134 UPDATE `list_options` SET `notes` = '1730-1' WHERE `option_id` = 'quechan' AND `list_id` = 'race';
8137 #IfRow2D list_options list_id race title Quechan
8138 UPDATE `list_options` SET `notes` = '1730-1' WHERE `title` = 'Quechan' AND `list_id` = 'race';
8141 #IfNotRow2Dx2 list_options list_id race option_id quileute title Quileute
8142 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','quileute','Quileute','6490', '0',' 1084-3', 0);
8145 #IfRow2D list_options list_id race option_id quileute
8146 UPDATE `list_options` SET `notes` = '1084-3' WHERE `option_id` = 'quileute' AND `list_id` = 'race';
8149 #IfRow2D list_options list_id race title Quileute
8150 UPDATE `list_options` SET `notes` = '1084-3' WHERE `title` = 'Quileute' AND `list_id` = 'race';
8153 #IfNotRow2Dx2 list_options list_id race option_id quinault title Quinault
8154 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','quinault','Quinault','6500', '0',' 1543-8', 0);
8157 #IfRow2D list_options list_id race option_id quinault
8158 UPDATE `list_options` SET `notes` = '1543-8' WHERE `option_id` = 'quinault' AND `list_id` = 'race';
8161 #IfRow2D list_options list_id race title Quinault
8162 UPDATE `list_options` SET `notes` = '1543-8' WHERE `title` = 'Quinault' AND `list_id` = 'race';
8165 #IfNotRow2Dx2 list_options list_id race option_id quinhagak title Quinhagak
8166 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','quinhagak','Quinhagak','6510', '0',' 1949-7', 0);
8169 #IfRow2D list_options list_id race option_id quinhagak
8170 UPDATE `list_options` SET `notes` = '1949-7' WHERE `option_id` = 'quinhagak' AND `list_id` = 'race';
8173 #IfRow2D list_options list_id race title Quinhagak
8174 UPDATE `list_options` SET `notes` = '1949-7' WHERE `title` = 'Quinhagak' AND `list_id` = 'race';
8177 #IfNotRow2Dx2 list_options list_id race option_id ramah_navajo title Ramah Navajo
8178 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ramah_navajo','Ramah Navajo','6520', '0',' 1385-4', 0);
8181 #IfRow2D list_options list_id race option_id ramah_navajo
8182 UPDATE `list_options` SET `notes` = '1385-4' WHERE `option_id` = 'ramah_navajo' AND `list_id` = 'race';
8185 #IfRow2D list_options list_id race title Ramah Navajo
8186 UPDATE `list_options` SET `notes` = '1385-4' WHERE `title` = 'Ramah Navajo' AND `list_id` = 'race';
8189 #IfNotRow2Dx2 list_options list_id race option_id rampart title Rampart
8190 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','rampart','Rampart','6530', '0',' 1790-5', 0);
8193 #IfRow2D list_options list_id race option_id rampart
8194 UPDATE `list_options` SET `notes` = '1790-5' WHERE `option_id` = 'rampart' AND `list_id` = 'race';
8197 #IfRow2D list_options list_id race title Rampart
8198 UPDATE `list_options` SET `notes` = '1790-5' WHERE `title` = 'Rampart' AND `list_id` = 'race';
8201 #IfNotRow2Dx2 list_options list_id race option_id rampough_mountain title Rampough Mountain
8202 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','rampough_mountain','Rampough Mountain','6540', '0',' 1219-5', 0);
8205 #IfRow2D list_options list_id race option_id rampough_mountain
8206 UPDATE `list_options` SET `notes` = '1219-5' WHERE `option_id` = 'rampough_mountain' AND `list_id` = 'race';
8209 #IfRow2D list_options list_id race title Rampough Mountain
8210 UPDATE `list_options` SET `notes` = '1219-5' WHERE `title` = 'Rampough Mountain' AND `list_id` = 'race';
8213 #IfNotRow2Dx2 list_options list_id race option_id rappahannock title Rappahannock
8214 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','rappahannock','Rappahannock','6550', '0',' 1545-3', 0);
8217 #IfRow2D list_options list_id race option_id rappahannock
8218 UPDATE `list_options` SET `notes` = '1545-3' WHERE `option_id` = 'rappahannock' AND `list_id` = 'race';
8221 #IfRow2D list_options list_id race title Rappahannock
8222 UPDATE `list_options` SET `notes` = '1545-3' WHERE `title` = 'Rappahannock' AND `list_id` = 'race';
8225 #IfNotRow2Dx2 list_options list_id race option_id red_cliff_chippewa title Red Cliff Chippewa
8226 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','red_cliff_chippewa','Red Cliff Chippewa','6560', '0',' 1141-1', 0);
8229 #IfRow2D list_options list_id race option_id red_cliff_chippewa
8230 UPDATE `list_options` SET `notes` = '1141-1' WHERE `option_id` = 'red_cliff_chippewa' AND `list_id` = 'race';
8233 #IfRow2D list_options list_id race title Red Cliff Chippewa
8234 UPDATE `list_options` SET `notes` = '1141-1' WHERE `title` = 'Red Cliff Chippewa' AND `list_id` = 'race';
8237 #IfNotRow2Dx2 list_options list_id race option_id red_devil title Red Devil
8238 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','red_devil','Red Devil','6570', '0',' 1950-5', 0);
8241 #IfRow2D list_options list_id race option_id red_devil
8242 UPDATE `list_options` SET `notes` = '1950-5' WHERE `option_id` = 'red_devil' AND `list_id` = 'race';
8245 #IfRow2D list_options list_id race title Red Devil
8246 UPDATE `list_options` SET `notes` = '1950-5' WHERE `title` = 'Red Devil' AND `list_id` = 'race';
8249 #IfNotRow2Dx2 list_options list_id race option_id red_lake_chippewa title Red Lake Chippewa
8250 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','red_lake_chippewa','Red Lake Chippewa','6580', '0',' 1142-9', 0);
8253 #IfRow2D list_options list_id race option_id red_lake_chippewa
8254 UPDATE `list_options` SET `notes` = '1142-9' WHERE `option_id` = 'red_lake_chippewa' AND `list_id` = 'race';
8257 #IfRow2D list_options list_id race title Red Lake Chippewa
8258 UPDATE `list_options` SET `notes` = '1142-9' WHERE `title` = 'Red Lake Chippewa' AND `list_id` = 'race';
8261 #IfNotRow2Dx2 list_options list_id race option_id red_wood title Red Wood
8262 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','red_wood','Red Wood','6590', '0',' 1061-1', 0);
8265 #IfRow2D list_options list_id race option_id red_wood
8266 UPDATE `list_options` SET `notes` = '1061-1' WHERE `option_id` = 'red_wood' AND `list_id` = 'race';
8269 #IfRow2D list_options list_id race title Red Wood
8270 UPDATE `list_options` SET `notes` = '1061-1' WHERE `title` = 'Red Wood' AND `list_id` = 'race';
8273 #IfNotRow2Dx2 list_options list_id race option_id reno-sparks title Reno-Sparks
8274 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','reno-sparks','Reno-Sparks','6600', '0',' 1547-9', 0);
8277 #IfRow2D list_options list_id race option_id reno-sparks
8278 UPDATE `list_options` SET `notes` = '1547-9' WHERE `option_id` = 'reno-sparks' AND `list_id` = 'race';
8281 #IfRow2D list_options list_id race title Reno-Sparks
8282 UPDATE `list_options` SET `notes` = '1547-9' WHERE `title` = 'Reno-Sparks' AND `list_id` = 'race';
8285 #IfNotRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8286 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','rocky_boys_chippewa_cree',"Rocky Boy's Chippewa Cree",'6610', '0',' 1151-0', 0);
8289 #IfRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8290 UPDATE `list_options` SET `notes` = '1151-0' WHERE `option_id` = 'rocky_boys_chippewa_cree' AND `list_id` = 'race';
8293 #IfNotRow2Dx2 list_options list_id race option_id rosebud_sioux title Rosebud Sioux
8294 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','rosebud_sioux','Rosebud Sioux','6620', '0',' 1627-9', 0);
8297 #IfRow2D list_options list_id race option_id rosebud_sioux
8298 UPDATE `list_options` SET `notes` = '1627-9' WHERE `option_id` = 'rosebud_sioux' AND `list_id` = 'race';
8301 #IfRow2D list_options list_id race title Rosebud Sioux
8302 UPDATE `list_options` SET `notes` = '1627-9' WHERE `title` = 'Rosebud Sioux' AND `list_id` = 'race';
8305 #IfNotRow2Dx2 list_options list_id race option_id round_valley title Round Valley
8306 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','round_valley','Round Valley','6630', '0',' 1549-5', 0);
8309 #IfRow2D list_options list_id race option_id round_valley
8310 UPDATE `list_options` SET `notes` = '1549-5' WHERE `option_id` = 'round_valley' AND `list_id` = 'race';
8313 #IfRow2D list_options list_id race title Round Valley
8314 UPDATE `list_options` SET `notes` = '1549-5' WHERE `title` = 'Round Valley' AND `list_id` = 'race';
8317 #IfNotRow2Dx2 list_options list_id race option_id ruby title Ruby
8318 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ruby','Ruby','6640', '0',' 1791-3', 0);
8321 #IfRow2D list_options list_id race option_id ruby
8322 UPDATE `list_options` SET `notes` = '1791-3' WHERE `option_id` = 'ruby' AND `list_id` = 'race';
8325 #IfRow2D list_options list_id race title Ruby
8326 UPDATE `list_options` SET `notes` = '1791-3' WHERE `title` = 'Ruby' AND `list_id` = 'race';
8329 #IfNotRow2Dx2 list_options list_id race option_id ruby_valley title Ruby Valley
8330 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ruby_valley','Ruby Valley','6650', '0',' 1593-3', 0);
8333 #IfRow2D list_options list_id race option_id ruby_valley
8334 UPDATE `list_options` SET `notes` = '1593-3' WHERE `option_id` = 'ruby_valley' AND `list_id` = 'race';
8337 #IfRow2D list_options list_id race title Ruby Valley
8338 UPDATE `list_options` SET `notes` = '1593-3' WHERE `title` = 'Ruby Valley' AND `list_id` = 'race';
8341 #IfNotRow2Dx2 list_options list_id race option_id sac_and_fox title Sac and Fox
8342 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sac_and_fox','Sac and Fox','6660', '0',' 1551-1', 0);
8345 #IfRow2D list_options list_id race option_id sac_and_fox
8346 UPDATE `list_options` SET `notes` = '1551-1' WHERE `option_id` = 'sac_and_fox' AND `list_id` = 'race';
8349 #IfRow2D list_options list_id race title Sac and Fox
8350 UPDATE `list_options` SET `notes` = '1551-1' WHERE `title` = 'Sac and Fox' AND `list_id` = 'race';
8353 #IfNotRow2Dx2 list_options list_id race option_id saginaw_chippewa title Saginaw Chippewa
8354 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','saginaw_chippewa','Saginaw Chippewa','6670', '0',' 1143-7', 0);
8357 #IfRow2D list_options list_id race option_id saginaw_chippewa
8358 UPDATE `list_options` SET `notes` = '1143-7' WHERE `option_id` = 'saginaw_chippewa' AND `list_id` = 'race';
8361 #IfRow2D list_options list_id race title Saginaw Chippewa
8362 UPDATE `list_options` SET `notes` = '1143-7' WHERE `title` = 'Saginaw Chippewa' AND `list_id` = 'race';
8365 #IfNotRow2Dx2 list_options list_id race option_id saipanese title Saipanese
8366 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','saipanese','Saipanese','6680', '0',' 2095-8', 0);
8369 #IfRow2D list_options list_id race option_id saipanese
8370 UPDATE `list_options` SET `notes` = '2095-8' WHERE `option_id` = 'saipanese' AND `list_id` = 'race';
8373 #IfRow2D list_options list_id race title Saipanese
8374 UPDATE `list_options` SET `notes` = '2095-8' WHERE `title` = 'Saipanese' AND `list_id` = 'race';
8377 #IfNotRow2Dx2 list_options list_id race option_id salamatof title Salamatof
8378 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','salamatof','Salamatof','6690', '0',' 1792-1', 0);
8381 #IfRow2D list_options list_id race option_id salamatof
8382 UPDATE `list_options` SET `notes` = '1792-1' WHERE `option_id` = 'salamatof' AND `list_id` = 'race';
8385 #IfRow2D list_options list_id race title Salamatof
8386 UPDATE `list_options` SET `notes` = '1792-1' WHERE `title` = 'Salamatof' AND `list_id` = 'race';
8389 #IfNotRow2Dx2 list_options list_id race option_id salinan title Salinan
8390 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','salinan','Salinan','6700', '0',' 1556-0', 0);
8393 #IfRow2D list_options list_id race option_id salinan
8394 UPDATE `list_options` SET `notes` = '1556-0' WHERE `option_id` = 'salinan' AND `list_id` = 'race';
8397 #IfRow2D list_options list_id race title Salinan
8398 UPDATE `list_options` SET `notes` = '1556-0' WHERE `title` = 'Salinan' AND `list_id` = 'race';
8401 #IfNotRow2Dx2 list_options list_id race option_id salish title Salish
8402 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','salish','Salish','6710', '0',' 1558-6', 0);
8405 #IfRow2D list_options list_id race option_id salish
8406 UPDATE `list_options` SET `notes` = '1558-6' WHERE `option_id` = 'salish' AND `list_id` = 'race';
8409 #IfRow2D list_options list_id race title Salish
8410 UPDATE `list_options` SET `notes` = '1558-6' WHERE `title` = 'Salish' AND `list_id` = 'race';
8413 #IfNotRow2Dx2 list_options list_id race option_id salish_and_kootenai title Salish and Kootenai
8414 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','salish_and_kootenai','Salish and Kootenai','6720', '0',' 1560-2', 0);
8417 #IfRow2D list_options list_id race option_id salish_and_kootenai
8418 UPDATE `list_options` SET `notes` = '1560-2' WHERE `option_id` = 'salish_and_kootenai' AND `list_id` = 'race';
8421 #IfRow2D list_options list_id race title Salish and Kootenai
8422 UPDATE `list_options` SET `notes` = '1560-2' WHERE `title` = 'Salish and Kootenai' AND `list_id` = 'race';
8425 #IfNotRow2Dx2 list_options list_id race option_id salt_river_pima-maricopa title Salt River Pima-Maricopa
8426 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','salt_river_pima-maricopa','Salt River Pima-Maricopa','6730', '0',' 1458-9', 0);
8429 #IfRow2D list_options list_id race option_id salt_river_pima-maricopa
8430 UPDATE `list_options` SET `notes` = '1458-9' WHERE `option_id` = 'salt_river_pima-maricopa' AND `list_id` = 'race';
8433 #IfRow2D list_options list_id race title Salt River Pima-Maricopa
8434 UPDATE `list_options` SET `notes` = '1458-9' WHERE `title` = 'Salt River Pima-Maricopa' AND `list_id` = 'race';
8437 #IfNotRow2Dx2 list_options list_id race option_id samish title Samish
8438 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','samish','Samish','6740', '0',' 1527-1', 0);
8441 #IfRow2D list_options list_id race option_id samish
8442 UPDATE `list_options` SET `notes` = '1527-1' WHERE `option_id` = 'samish' AND `list_id` = 'race';
8445 #IfRow2D list_options list_id race title Samish
8446 UPDATE `list_options` SET `notes` = '1527-1' WHERE `title` = 'Samish' AND `list_id` = 'race';
8449 #IfNotRow2Dx2 list_options list_id race option_id samoan title Samoan
8450 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','samoan','Samoan','6750', '0',' 2080-0', 0);
8453 #IfRow2D list_options list_id race option_id samoan
8454 UPDATE `list_options` SET `notes` = '2080-0' WHERE `option_id` = 'samoan' AND `list_id` = 'race';
8457 #IfRow2D list_options list_id race title Samoan
8458 UPDATE `list_options` SET `notes` = '2080-0' WHERE `title` = 'Samoan' AND `list_id` = 'race';
8461 #IfNotRow2Dx2 list_options list_id race option_id san_carlos_apache title San Carlos Apache
8462 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_carlos_apache','San Carlos Apache','6760', '0',' 1018-1', 0);
8465 #IfRow2D list_options list_id race option_id san_carlos_apache
8466 UPDATE `list_options` SET `notes` = '1018-1' WHERE `option_id` = 'san_carlos_apache' AND `list_id` = 'race';
8469 #IfRow2D list_options list_id race title San Carlos Apache
8470 UPDATE `list_options` SET `notes` = '1018-1' WHERE `title` = 'San Carlos Apache' AND `list_id` = 'race';
8473 #IfNotRow2Dx2 list_options list_id race option_id san_felipe title San Felipe
8474 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_felipe','San Felipe','6770', '0',' 1502-4', 0);
8477 #IfRow2D list_options list_id race option_id san_felipe
8478 UPDATE `list_options` SET `notes` = '1502-4' WHERE `option_id` = 'san_felipe' AND `list_id` = 'race';
8481 #IfRow2D list_options list_id race title San Felipe
8482 UPDATE `list_options` SET `notes` = '1502-4' WHERE `title` = 'San Felipe' AND `list_id` = 'race';
8485 #IfNotRow2Dx2 list_options list_id race option_id san_ildefonso title San Ildefonso
8486 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_ildefonso','San Ildefonso','6780', '0',' 1503-2', 0);
8489 #IfRow2D list_options list_id race option_id san_ildefonso
8490 UPDATE `list_options` SET `notes` = '1503-2' WHERE `option_id` = 'san_ildefonso' AND `list_id` = 'race';
8493 #IfRow2D list_options list_id race title San Ildefonso
8494 UPDATE `list_options` SET `notes` = '1503-2' WHERE `title` = 'San Ildefonso' AND `list_id` = 'race';
8497 #IfNotRow2Dx2 list_options list_id race option_id san_juan title San Juan
8498 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_juan','San Juan','6790', '0',' 1506-5', 0);
8501 #IfRow2D list_options list_id race option_id san_juan
8502 UPDATE `list_options` SET `notes` = '1506-5' WHERE `option_id` = 'san_juan' AND `list_id` = 'race';
8505 #IfRow2D list_options list_id race title San Juan
8506 UPDATE `list_options` SET `notes` = '1506-5' WHERE `title` = 'San Juan' AND `list_id` = 'race';
8509 #IfNotRow2Dx2 list_options list_id race option_id san_juan_de title San Juan De
8510 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_juan_de','San Juan De','6800', '0',' 1505-7', 0);
8513 #IfRow2D list_options list_id race option_id san_juan_de
8514 UPDATE `list_options` SET `notes` = '1505-7' WHERE `option_id` = 'san_juan_de' AND `list_id` = 'race';
8517 #IfRow2D list_options list_id race title San Juan De
8518 UPDATE `list_options` SET `notes` = '1505-7' WHERE `title` = 'San Juan De' AND `list_id` = 'race';
8521 #IfNotRow2Dx2 list_options list_id race option_id san_juan_pueblo title San Juan Pueblo
8522 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_juan_pueblo','San Juan Pueblo','6810', '0',' 1504-0', 0);
8525 #IfRow2D list_options list_id race option_id san_juan_pueblo
8526 UPDATE `list_options` SET `notes` = '1504-0' WHERE `option_id` = 'san_juan_pueblo' AND `list_id` = 'race';
8529 #IfRow2D list_options list_id race title San Juan Pueblo
8530 UPDATE `list_options` SET `notes` = '1504-0' WHERE `title` = 'San Juan Pueblo' AND `list_id` = 'race';
8533 #IfNotRow2Dx2 list_options list_id race option_id san_juan_southern_paiute title San Juan Southern Paiute
8534 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_juan_southern_paiute','San Juan Southern Paiute','6820', '0',' 1432-4', 0);
8537 #IfRow2D list_options list_id race option_id san_juan_southern_paiute
8538 UPDATE `list_options` SET `notes` = '1432-4' WHERE `option_id` = 'san_juan_southern_paiute' AND `list_id` = 'race';
8541 #IfRow2D list_options list_id race title San Juan Southern Paiute
8542 UPDATE `list_options` SET `notes` = '1432-4' WHERE `title` = 'San Juan Southern Paiute' AND `list_id` = 'race';
8545 #IfNotRow2Dx2 list_options list_id race option_id san_manual title San Manual
8546 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_manual','San Manual','6830', '0',' 1574-3', 0);
8549 #IfRow2D list_options list_id race option_id san_manual
8550 UPDATE `list_options` SET `notes` = '1574-3' WHERE `option_id` = 'san_manual' AND `list_id` = 'race';
8553 #IfRow2D list_options list_id race title San Manual
8554 UPDATE `list_options` SET `notes` = '1574-3' WHERE `title` = 'San Manual' AND `list_id` = 'race';
8557 #IfNotRow2Dx2 list_options list_id race option_id san_pasqual title San Pasqual
8558 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_pasqual','San Pasqual','6840', '0',' 1229-4', 0);
8561 #IfRow2D list_options list_id race option_id san_pasqual
8562 UPDATE `list_options` SET `notes` = '1229-4' WHERE `option_id` = 'san_pasqual' AND `list_id` = 'race';
8565 #IfRow2D list_options list_id race title San Pasqual
8566 UPDATE `list_options` SET `notes` = '1229-4' WHERE `title` = 'San Pasqual' AND `list_id` = 'race';
8569 #IfNotRow2Dx2 list_options list_id race option_id san_xavier title San Xavier
8570 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','san_xavier','San Xavier','6850', '0',' 1656-8', 0);
8573 #IfRow2D list_options list_id race option_id san_xavier
8574 UPDATE `list_options` SET `notes` = '1656-8' WHERE `option_id` = 'san_xavier' AND `list_id` = 'race';
8577 #IfRow2D list_options list_id race title San Xavier
8578 UPDATE `list_options` SET `notes` = '1656-8' WHERE `title` = 'San Xavier' AND `list_id` = 'race';
8581 #IfNotRow2Dx2 list_options list_id race option_id sand_hill title Sand Hill
8582 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sand_hill','Sand Hill','6860', '0',' 1220-3', 0);
8585 #IfRow2D list_options list_id race option_id sand_hill
8586 UPDATE `list_options` SET `notes` = '1220-3' WHERE `option_id` = 'sand_hill' AND `list_id` = 'race';
8589 #IfRow2D list_options list_id race title Sand Hill
8590 UPDATE `list_options` SET `notes` = '1220-3' WHERE `title` = 'Sand Hill' AND `list_id` = 'race';
8593 #IfNotRow2Dx2 list_options list_id race option_id sand_point title Sand Point
8594 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sand_point','Sand Point','6870', '0',' 2023-0', 0);
8597 #IfRow2D list_options list_id race option_id sand_point
8598 UPDATE `list_options` SET `notes` = '2023-0' WHERE `option_id` = 'sand_point' AND `list_id` = 'race';
8601 #IfRow2D list_options list_id race title Sand Point
8602 UPDATE `list_options` SET `notes` = '2023-0' WHERE `title` = 'Sand Point' AND `list_id` = 'race';
8605 #IfNotRow2Dx2 list_options list_id race option_id sandia title Sandia
8606 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sandia','Sandia','6880', '0',' 1507-3', 0);
8609 #IfRow2D list_options list_id race option_id sandia
8610 UPDATE `list_options` SET `notes` = '1507-3' WHERE `option_id` = 'sandia' AND `list_id` = 'race';
8613 #IfRow2D list_options list_id race title Sandia
8614 UPDATE `list_options` SET `notes` = '1507-3' WHERE `title` = 'Sandia' AND `list_id` = 'race';
8617 #IfNotRow2Dx2 list_options list_id race option_id sans_arc_sioux title Sans Arc Sioux
8618 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sans_arc_sioux','Sans Arc Sioux','6890', '0',' 1628-7', 0);
8621 #IfRow2D list_options list_id race option_id sans_arc_sioux
8622 UPDATE `list_options` SET `notes` = '1628-7' WHERE `option_id` = 'sans_arc_sioux' AND `list_id` = 'race';
8625 #IfRow2D list_options list_id race title Sans Arc Sioux
8626 UPDATE `list_options` SET `notes` = '1628-7' WHERE `title` = 'Sans Arc Sioux' AND `list_id` = 'race';
8629 #IfNotRow2Dx2 list_options list_id race option_id santa_ana title Santa Ana
8630 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_ana','Santa Ana','6900', '0',' 1508-1', 0);
8633 #IfRow2D list_options list_id race option_id santa_ana
8634 UPDATE `list_options` SET `notes` = '1508-1' WHERE `option_id` = 'santa_ana' AND `list_id` = 'race';
8637 #IfRow2D list_options list_id race title Santa Ana
8638 UPDATE `list_options` SET `notes` = '1508-1' WHERE `title` = 'Santa Ana' AND `list_id` = 'race';
8641 #IfNotRow2Dx2 list_options list_id race option_id santa_clara title Santa Clara
8642 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_clara','Santa Clara','6910', '0',' 1509-9', 0);
8645 #IfRow2D list_options list_id race option_id santa_clara
8646 UPDATE `list_options` SET `notes` = '1509-9' WHERE `option_id` = 'santa_clara' AND `list_id` = 'race';
8649 #IfRow2D list_options list_id race title Santa Clara
8650 UPDATE `list_options` SET `notes` = '1509-9' WHERE `title` = 'Santa Clara' AND `list_id` = 'race';
8653 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa title Santa Rosa
8654 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_rosa','Santa Rosa','6920', '0',' 1062-9', 0);
8657 #IfRow2D list_options list_id race option_id santa_rosa
8658 UPDATE `list_options` SET `notes` = '1062-9' WHERE `option_id` = 'santa_rosa' AND `list_id` = 'race';
8661 #IfRow2D list_options list_id race title Santa Rosa
8662 UPDATE `list_options` SET `notes` = '1062-9' WHERE `title` = 'Santa Rosa' AND `list_id` = 'race';
8665 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa_cahuilla title Santa Rosa Cahuilla
8666 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_rosa_cahuilla','Santa Rosa Cahuilla','6930', '0',' 1050-4', 0);
8669 #IfRow2D list_options list_id race option_id santa_rosa_cahuilla
8670 UPDATE `list_options` SET `notes` = '1050-4' WHERE `option_id` = 'santa_rosa_cahuilla' AND `list_id` = 'race';
8673 #IfRow2D list_options list_id race title Santa Rosa Cahuilla
8674 UPDATE `list_options` SET `notes` = '1050-4' WHERE `title` = 'Santa Rosa Cahuilla' AND `list_id` = 'race';
8677 #IfNotRow2Dx2 list_options list_id race option_id santa_ynez title Santa Ynez
8678 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_ynez','Santa Ynez','6940', '0',' 1163-5', 0);
8681 #IfRow2D list_options list_id race option_id santa_ynez
8682 UPDATE `list_options` SET `notes` = '1163-5' WHERE `option_id` = 'santa_ynez' AND `list_id` = 'race';
8685 #IfRow2D list_options list_id race title Santa Ynez
8686 UPDATE `list_options` SET `notes` = '1163-5' WHERE `title` = 'Santa Ynez' AND `list_id` = 'race';
8689 #IfNotRow2Dx2 list_options list_id race option_id santa_ysabel title Santa Ysabel
8690 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santa_ysabel','Santa Ysabel','6950', '0',' 1230-2', 0);
8693 #IfRow2D list_options list_id race option_id santa_ysabel
8694 UPDATE `list_options` SET `notes` = '1230-2' WHERE `option_id` = 'santa_ysabel' AND `list_id` = 'race';
8697 #IfRow2D list_options list_id race title Santa Ysabel
8698 UPDATE `list_options` SET `notes` = '1230-2' WHERE `title` = 'Santa Ysabel' AND `list_id` = 'race';
8701 #IfNotRow2Dx2 list_options list_id race option_id santee_sioux title Santee Sioux
8702 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santee_sioux','Santee Sioux','6960', '0',' 1629-5', 0);
8705 #IfRow2D list_options list_id race option_id santee_sioux
8706 UPDATE `list_options` SET `notes` = '1629-5' WHERE `option_id` = 'santee_sioux' AND `list_id` = 'race';
8709 #IfRow2D list_options list_id race title Santee Sioux
8710 UPDATE `list_options` SET `notes` = '1629-5' WHERE `title` = 'Santee Sioux' AND `list_id` = 'race';
8713 #IfNotRow2Dx2 list_options list_id race option_id santo_domingo title Santo Domingo
8714 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','santo_domingo','Santo Domingo','6970', '0',' 1510-7', 0);
8717 #IfRow2D list_options list_id race option_id santo_domingo
8718 UPDATE `list_options` SET `notes` = '1510-7' WHERE `option_id` = 'santo_domingo' AND `list_id` = 'race';
8721 #IfRow2D list_options list_id race title Santo Domingo
8722 UPDATE `list_options` SET `notes` = '1510-7' WHERE `title` = 'Santo Domingo' AND `list_id` = 'race';
8725 #IfNotRow2Dx2 list_options list_id race option_id sauk-suiattle title Sauk-Suiattle
8726 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sauk-suiattle','Sauk-Suiattle','6980', '0',' 1528-9', 0);
8729 #IfRow2D list_options list_id race option_id sauk-suiattle
8730 UPDATE `list_options` SET `notes` = '1528-9' WHERE `option_id` = 'sauk-suiattle' AND `list_id` = 'race';
8733 #IfRow2D list_options list_id race title Sauk-Suiattle
8734 UPDATE `list_options` SET `notes` = '1528-9' WHERE `title` = 'Sauk-Suiattle' AND `list_id` = 'race';
8737 #IfNotRow2Dx2 list_options list_id race option_id sault_ste_marie_chippewa title Sault Ste. Marie Chippewa
8738 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sault_ste_marie_chippewa','Sault Ste. Marie Chippewa','6990', '0',' 1145-2', 0);
8741 #IfRow2D list_options list_id race option_id sault_ste_marie_chippewa
8742 UPDATE `list_options` SET `notes` = '1145-2' WHERE `option_id` = 'sault_ste_marie_chippewa' AND `list_id` = 'race';
8745 #IfRow2D list_options list_id race title Sault Ste. Marie Chippewa
8746 UPDATE `list_options` SET `notes` = '1145-2' WHERE `title` = 'Sault Ste. Marie Chippewa' AND `list_id` = 'race';
8749 #IfNotRow2Dx2 list_options list_id race option_id savoonga title Savoonga
8750 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','savoonga','Savoonga','7000', '0',' 1893-7', 0);
8753 #IfRow2D list_options list_id race option_id savoonga
8754 UPDATE `list_options` SET `notes` = '1893-7' WHERE `option_id` = 'savoonga' AND `list_id` = 'race';
8757 #IfRow2D list_options list_id race title Savoonga
8758 UPDATE `list_options` SET `notes` = '1893-7' WHERE `title` = 'Savoonga' AND `list_id` = 'race';
8761 #IfNotRow2Dx2 list_options list_id race option_id saxman title Saxman
8762 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','saxman','Saxman','7010', '0',' 1830-9', 0);
8765 #IfRow2D list_options list_id race option_id saxman
8766 UPDATE `list_options` SET `notes` = '1830-9' WHERE `option_id` = 'saxman' AND `list_id` = 'race';
8769 #IfRow2D list_options list_id race title Saxman
8770 UPDATE `list_options` SET `notes` = '1830-9' WHERE `title` = 'Saxman' AND `list_id` = 'race';
8773 #IfNotRow2Dx2 list_options list_id race option_id scammon_bay title Scammon Bay
8774 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','scammon_bay','Scammon Bay','7020', '0',' 1952-1', 0);
8777 #IfRow2D list_options list_id race option_id scammon_bay
8778 UPDATE `list_options` SET `notes` = '1952-1' WHERE `option_id` = 'scammon_bay' AND `list_id` = 'race';
8781 #IfRow2D list_options list_id race title Scammon Bay
8782 UPDATE `list_options` SET `notes` = '1952-1' WHERE `title` = 'Scammon Bay' AND `list_id` = 'race';
8785 #IfNotRow2Dx2 list_options list_id race option_id schaghticoke title Schaghticoke
8786 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','schaghticoke','Schaghticoke','7030', '0',' 1562-8', 0);
8789 #IfRow2D list_options list_id race option_id schaghticoke
8790 UPDATE `list_options` SET `notes` = '1562-8' WHERE `option_id` = 'schaghticoke' AND `list_id` = 'race';
8793 #IfRow2D list_options list_id race title Schaghticoke
8794 UPDATE `list_options` SET `notes` = '1562-8' WHERE `title` = 'Schaghticoke' AND `list_id` = 'race';
8797 #IfNotRow2Dx2 list_options list_id race option_id scott_valley title Scott Valley
8798 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','scott_valley','Scott Valley','7040', '0',' 1564-4', 0);
8801 #IfRow2D list_options list_id race option_id scott_valley
8802 UPDATE `list_options` SET `notes` = '1564-4' WHERE `option_id` = 'scott_valley' AND `list_id` = 'race';
8805 #IfRow2D list_options list_id race title Scott Valley
8806 UPDATE `list_options` SET `notes` = '1564-4' WHERE `title` = 'Scott Valley' AND `list_id` = 'race';
8809 #IfNotRow2Dx2 list_options list_id race option_id scottish title Scottish
8810 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','scottish','Scottish','7050', '0',' 2116-2', 0);
8813 #IfRow2D list_options list_id race option_id scottish
8814 UPDATE `list_options` SET `notes` = '2116-2' WHERE `option_id` = 'scottish' AND `list_id` = 'race';
8817 #IfRow2D list_options list_id race title Scottish
8818 UPDATE `list_options` SET `notes` = '2116-2' WHERE `title` = 'Scottish' AND `list_id` = 'race';
8821 #IfNotRow2Dx2 list_options list_id race option_id scotts_valley title Scotts Valley
8822 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','scotts_valley','Scotts Valley','7060', '0',' 1470-4', 0);
8825 #IfRow2D list_options list_id race option_id scotts_valley
8826 UPDATE `list_options` SET `notes` = '1470-4' WHERE `option_id` = 'scotts_valley' AND `list_id` = 'race';
8829 #IfRow2D list_options list_id race title Scotts Valley
8830 UPDATE `list_options` SET `notes` = '1470-4' WHERE `title` = 'Scotts Valley' AND `list_id` = 'race';
8833 #IfNotRow2Dx2 list_options list_id race option_id selawik title Selawik
8834 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','selawik','Selawik','7070', '0',' 1878-8', 0);
8837 #IfRow2D list_options list_id race option_id selawik
8838 UPDATE `list_options` SET `notes` = '1878-8' WHERE `option_id` = 'selawik' AND `list_id` = 'race';
8841 #IfRow2D list_options list_id race title Selawik
8842 UPDATE `list_options` SET `notes` = '1878-8' WHERE `title` = 'Selawik' AND `list_id` = 'race';
8845 #IfNotRow2Dx2 list_options list_id race option_id seldovia title Seldovia
8846 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','seldovia','Seldovia','7080', '0',' 1793-9', 0);
8849 #IfRow2D list_options list_id race option_id seldovia
8850 UPDATE `list_options` SET `notes` = '1793-9' WHERE `option_id` = 'seldovia' AND `list_id` = 'race';
8853 #IfRow2D list_options list_id race title Seldovia
8854 UPDATE `list_options` SET `notes` = '1793-9' WHERE `title` = 'Seldovia' AND `list_id` = 'race';
8857 #IfNotRow2Dx2 list_options list_id race option_id sells title Sells
8858 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sells','Sells','7090', '0',' 1657-6', 0);
8861 #IfRow2D list_options list_id race option_id sells
8862 UPDATE `list_options` SET `notes` = '1657-6' WHERE `option_id` = 'sells' AND `list_id` = 'race';
8865 #IfRow2D list_options list_id race title Sells
8866 UPDATE `list_options` SET `notes` = '1657-6' WHERE `title` = 'Sells' AND `list_id` = 'race';
8869 #IfNotRow2Dx2 list_options list_id race option_id seminole title Seminole
8870 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','seminole','Seminole','7100', '0',' 1566-9', 0);
8873 #IfRow2D list_options list_id race option_id seminole
8874 UPDATE `list_options` SET `notes` = '1566-9' WHERE `option_id` = 'seminole' AND `list_id` = 'race';
8877 #IfRow2D list_options list_id race title Seminole
8878 UPDATE `list_options` SET `notes` = '1566-9' WHERE `title` = 'Seminole' AND `list_id` = 'race';
8881 #IfNotRow2Dx2 list_options list_id race option_id seneca title Seneca
8882 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','seneca','Seneca','7110', '0',' 1290-6', 0);
8885 #IfRow2D list_options list_id race option_id seneca
8886 UPDATE `list_options` SET `notes` = '1290-6' WHERE `option_id` = 'seneca' AND `list_id` = 'race';
8889 #IfRow2D list_options list_id race title Seneca
8890 UPDATE `list_options` SET `notes` = '1290-6' WHERE `title` = 'Seneca' AND `list_id` = 'race';
8893 #IfNotRow2Dx2 list_options list_id race option_id seneca_nation title Seneca Nation
8894 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','seneca_nation','Seneca Nation','7120', '0',' 1291-4', 0);
8897 #IfRow2D list_options list_id race option_id seneca_nation
8898 UPDATE `list_options` SET `notes` = '1291-4' WHERE `option_id` = 'seneca_nation' AND `list_id` = 'race';
8901 #IfRow2D list_options list_id race title Seneca Nation
8902 UPDATE `list_options` SET `notes` = '1291-4' WHERE `title` = 'Seneca Nation' AND `list_id` = 'race';
8905 #IfNotRow2Dx2 list_options list_id race option_id seneca-cayuga title Seneca-Cayuga
8906 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','seneca-cayuga','Seneca-Cayuga','7130', '0',' 1292-2', 0);
8909 #IfRow2D list_options list_id race option_id seneca-cayuga
8910 UPDATE `list_options` SET `notes` = '1292-2' WHERE `option_id` = 'seneca-cayuga' AND `list_id` = 'race';
8913 #IfRow2D list_options list_id race title Seneca-Cayuga
8914 UPDATE `list_options` SET `notes` = '1292-2' WHERE `title` = 'Seneca-Cayuga' AND `list_id` = 'race';
8917 #IfNotRow2Dx2 list_options list_id race option_id serrano title Serrano
8918 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','serrano','Serrano','7140', '0',' 1573-5', 0);
8921 #IfRow2D list_options list_id race option_id serrano
8922 UPDATE `list_options` SET `notes` = '1573-5' WHERE `option_id` = 'serrano' AND `list_id` = 'race';
8925 #IfRow2D list_options list_id race title Serrano
8926 UPDATE `list_options` SET `notes` = '1573-5' WHERE `title` = 'Serrano' AND `list_id` = 'race';
8929 #IfNotRow2Dx2 list_options list_id race option_id setauket title Setauket
8930 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','setauket','Setauket','7150', '0',' 1329-2', 0);
8933 #IfRow2D list_options list_id race option_id setauket
8934 UPDATE `list_options` SET `notes` = '1329-2' WHERE `option_id` = 'setauket' AND `list_id` = 'race';
8937 #IfRow2D list_options list_id race title Setauket
8938 UPDATE `list_options` SET `notes` = '1329-2' WHERE `title` = 'Setauket' AND `list_id` = 'race';
8941 #IfNotRow2Dx2 list_options list_id race option_id shageluk title Shageluk
8942 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shageluk','Shageluk','7160', '0',' 1795-4', 0);
8945 #IfRow2D list_options list_id race option_id shageluk
8946 UPDATE `list_options` SET `notes` = '1795-4' WHERE `option_id` = 'shageluk' AND `list_id` = 'race';
8949 #IfRow2D list_options list_id race title Shageluk
8950 UPDATE `list_options` SET `notes` = '1795-4' WHERE `title` = 'Shageluk' AND `list_id` = 'race';
8953 #IfNotRow2Dx2 list_options list_id race option_id shaktoolik title Shaktoolik
8954 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shaktoolik','Shaktoolik','7170', '0',' 1879-6', 0);
8957 #IfRow2D list_options list_id race option_id shaktoolik
8958 UPDATE `list_options` SET `notes` = '1879-6' WHERE `option_id` = 'shaktoolik' AND `list_id` = 'race';
8961 #IfRow2D list_options list_id race title Shaktoolik
8962 UPDATE `list_options` SET `notes` = '1879-6' WHERE `title` = 'Shaktoolik' AND `list_id` = 'race';
8965 #IfNotRow2Dx2 list_options list_id race option_id shasta title Shasta
8966 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shasta','Shasta','7180', '0',' 1576-8', 0);
8969 #IfRow2D list_options list_id race option_id shasta
8970 UPDATE `list_options` SET `notes` = '1576-8' WHERE `option_id` = 'shasta' AND `list_id` = 'race';
8973 #IfRow2D list_options list_id race title Shasta
8974 UPDATE `list_options` SET `notes` = '1576-8' WHERE `title` = 'Shasta' AND `list_id` = 'race';
8977 #IfNotRow2Dx2 list_options list_id race option_id shawnee title Shawnee
8978 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shawnee','Shawnee','7190', '0',' 1578-4', 0);
8981 #IfRow2D list_options list_id race option_id shawnee
8982 UPDATE `list_options` SET `notes` = '1578-4' WHERE `option_id` = 'shawnee' AND `list_id` = 'race';
8985 #IfRow2D list_options list_id race title Shawnee
8986 UPDATE `list_options` SET `notes` = '1578-4' WHERE `title` = 'Shawnee' AND `list_id` = 'race';
8989 #IfNotRow2D list_options list_id race option_id sheldons_point
8990 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sheldons_point',"Sheldon's Point",'7200', '0',' 1953-9', 0);
8993 #IfRow2D list_options list_id race option_id sheldons_point
8994 UPDATE `list_options` SET `notes` = '1953-9' WHERE `option_id` = 'sheldons_point' AND `list_id` = 'race';
8997 #IfNotRow2Dx2 list_options list_id race option_id shinnecock title Shinnecock
8998 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shinnecock','Shinnecock','7210', '0',' 1582-6', 0);
9001 #IfRow2D list_options list_id race option_id shinnecock
9002 UPDATE `list_options` SET `notes` = '1582-6' WHERE `option_id` = 'shinnecock' AND `list_id` = 'race';
9005 #IfRow2D list_options list_id race title Shinnecock
9006 UPDATE `list_options` SET `notes` = '1582-6' WHERE `title` = 'Shinnecock' AND `list_id` = 'race';
9009 #IfNotRow2Dx2 list_options list_id race option_id shishmaref title Shishmaref
9010 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shishmaref','Shishmaref','7220', '0',' 1880-4', 0);
9013 #IfRow2D list_options list_id race option_id shishmaref
9014 UPDATE `list_options` SET `notes` = '1880-4' WHERE `option_id` = 'shishmaref' AND `list_id` = 'race';
9017 #IfRow2D list_options list_id race title Shishmaref
9018 UPDATE `list_options` SET `notes` = '1880-4' WHERE `title` = 'Shishmaref' AND `list_id` = 'race';
9021 #IfNotRow2Dx2 list_options list_id race option_id shoalwater_bay title Shoalwater Bay
9022 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shoalwater_bay','Shoalwater Bay','7230', '0',' 1584-2', 0);
9025 #IfRow2D list_options list_id race option_id shoalwater_bay
9026 UPDATE `list_options` SET `notes` = '1584-2' WHERE `option_id` = 'shoalwater_bay' AND `list_id` = 'race';
9029 #IfRow2D list_options list_id race title Shoalwater Bay
9030 UPDATE `list_options` SET `notes` = '1584-2' WHERE `title` = 'Shoalwater Bay' AND `list_id` = 'race';
9033 #IfNotRow2Dx2 list_options list_id race option_id shoshone title Shoshone
9034 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shoshone','Shoshone','7240', '0',' 1586-7', 0);
9037 #IfRow2D list_options list_id race option_id shoshone
9038 UPDATE `list_options` SET `notes` = '1586-7' WHERE `option_id` = 'shoshone' AND `list_id` = 'race';
9041 #IfRow2D list_options list_id race title Shoshone
9042 UPDATE `list_options` SET `notes` = '1586-7' WHERE `title` = 'Shoshone' AND `list_id` = 'race';
9045 #IfNotRow2Dx2 list_options list_id race option_id shoshone_paiute title Shoshone Paiute
9046 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shoshone_paiute','Shoshone Paiute','7250', '0',' 1602-2', 0);
9049 #IfRow2D list_options list_id race option_id shoshone_paiute
9050 UPDATE `list_options` SET `notes` = '1602-2' WHERE `option_id` = 'shoshone_paiute' AND `list_id` = 'race';
9053 #IfRow2D list_options list_id race title Shoshone Paiute
9054 UPDATE `list_options` SET `notes` = '1602-2' WHERE `title` = 'Shoshone Paiute' AND `list_id` = 'race';
9057 #IfNotRow2Dx2 list_options list_id race option_id shungnak title Shungnak
9058 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','shungnak','Shungnak','7260', '0',' 1881-2', 0);
9061 #IfRow2D list_options list_id race option_id shungnak
9062 UPDATE `list_options` SET `notes` = '1881-2' WHERE `option_id` = 'shungnak' AND `list_id` = 'race';
9065 #IfRow2D list_options list_id race title Shungnak
9066 UPDATE `list_options` SET `notes` = '1881-2' WHERE `title` = 'Shungnak' AND `list_id` = 'race';
9069 #IfNotRow2Dx2 list_options list_id race option_id siberian_eskimo title Siberian Eskimo
9070 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','siberian_eskimo','Siberian Eskimo','7270', '0',' 1891-1', 0);
9073 #IfRow2D list_options list_id race option_id siberian_eskimo
9074 UPDATE `list_options` SET `notes` = '1891-1' WHERE `option_id` = 'siberian_eskimo' AND `list_id` = 'race';
9077 #IfRow2D list_options list_id race title Siberian Eskimo
9078 UPDATE `list_options` SET `notes` = '1891-1' WHERE `title` = 'Siberian Eskimo' AND `list_id` = 'race';
9081 #IfNotRow2Dx2 list_options list_id race option_id siberian_yupik title Siberian Yupik
9082 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','siberian_yupik','Siberian Yupik','7280', '0',' 1894-5', 0);
9085 #IfRow2D list_options list_id race option_id siberian_yupik
9086 UPDATE `list_options` SET `notes` = '1894-5' WHERE `option_id` = 'siberian_yupik' AND `list_id` = 'race';
9089 #IfRow2D list_options list_id race title Siberian Yupik
9090 UPDATE `list_options` SET `notes` = '1894-5' WHERE `title` = 'Siberian Yupik' AND `list_id` = 'race';
9093 #IfNotRow2Dx2 list_options list_id race option_id siletz title Siletz
9094 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','siletz','Siletz','7290', '0',' 1607-1', 0);
9097 #IfRow2D list_options list_id race option_id siletz
9098 UPDATE `list_options` SET `notes` = '1607-1' WHERE `option_id` = 'siletz' AND `list_id` = 'race';
9101 #IfRow2D list_options list_id race title Siletz
9102 UPDATE `list_options` SET `notes` = '1607-1' WHERE `title` = 'Siletz' AND `list_id` = 'race';
9105 #IfNotRow2Dx2 list_options list_id race option_id singaporean title Singaporean
9106 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','singaporean','Singaporean','7300', '0',' 2051-1', 0);
9109 #IfRow2D list_options list_id race option_id singaporean
9110 UPDATE `list_options` SET `notes` = '2051-1' WHERE `option_id` = 'singaporean' AND `list_id` = 'race';
9113 #IfRow2D list_options list_id race title Singaporean
9114 UPDATE `list_options` SET `notes` = '2051-1' WHERE `title` = 'Singaporean' AND `list_id` = 'race';
9117 #IfNotRow2Dx2 list_options list_id race option_id sioux title Sioux
9118 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sioux','Sioux','7310', '0',' 1609-7', 0);
9121 #IfRow2D list_options list_id race option_id sioux
9122 UPDATE `list_options` SET `notes` = '1609-7' WHERE `option_id` = 'sioux' AND `list_id` = 'race';
9125 #IfRow2D list_options list_id race title Sioux
9126 UPDATE `list_options` SET `notes` = '1609-7' WHERE `title` = 'Sioux' AND `list_id` = 'race';
9129 #IfNotRow2Dx2 list_options list_id race option_id sisseton_sioux title Sisseton Sioux
9130 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sisseton_sioux','Sisseton Sioux','7320', '0',' 1631-1', 0);
9133 #IfRow2D list_options list_id race option_id sisseton_sioux
9134 UPDATE `list_options` SET `notes` = '1631-1' WHERE `option_id` = 'sisseton_sioux' AND `list_id` = 'race';
9137 #IfRow2D list_options list_id race title Sisseton Sioux
9138 UPDATE `list_options` SET `notes` = '1631-1' WHERE `title` = 'Sisseton Sioux' AND `list_id` = 'race';
9141 #IfNotRow2Dx2 list_options list_id race option_id sisseton-wahpeton title Sisseton-Wahpeton
9142 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sisseton-wahpeton','Sisseton-Wahpeton','7330', '0',' 1630-3', 0);
9145 #IfRow2D list_options list_id race option_id sisseton-wahpeton
9146 UPDATE `list_options` SET `notes` = '1630-3' WHERE `option_id` = 'sisseton-wahpeton' AND `list_id` = 'race';
9149 #IfRow2D list_options list_id race title Sisseton-Wahpeton
9150 UPDATE `list_options` SET `notes` = '1630-3' WHERE `title` = 'Sisseton-Wahpeton' AND `list_id` = 'race';
9153 #IfNotRow2Dx2 list_options list_id race option_id sitka title Sitka
9154 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sitka','Sitka','7340', '0',' 1831-7', 0);
9157 #IfRow2D list_options list_id race option_id sitka
9158 UPDATE `list_options` SET `notes` = '1831-7' WHERE `option_id` = 'sitka' AND `list_id` = 'race';
9161 #IfRow2D list_options list_id race title Sitka
9162 UPDATE `list_options` SET `notes` = '1831-7' WHERE `title` = 'Sitka' AND `list_id` = 'race';
9165 #IfNotRow2Dx2 list_options list_id race option_id siuslaw title Siuslaw
9166 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','siuslaw','Siuslaw','7350', '0',' 1643-6', 0);
9169 #IfRow2D list_options list_id race option_id siuslaw
9170 UPDATE `list_options` SET `notes` = '1643-6' WHERE `option_id` = 'siuslaw' AND `list_id` = 'race';
9173 #IfRow2D list_options list_id race title Siuslaw
9174 UPDATE `list_options` SET `notes` = '1643-6' WHERE `title` = 'Siuslaw' AND `list_id` = 'race';
9177 #IfNotRow2Dx2 list_options list_id race option_id skokomish title Skokomish
9178 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','skokomish','Skokomish','7360', '0',' 1529-7', 0);
9181 #IfRow2D list_options list_id race option_id skokomish
9182 UPDATE `list_options` SET `notes` = '1529-7' WHERE `option_id` = 'skokomish' AND `list_id` = 'race';
9185 #IfRow2D list_options list_id race title Skokomish
9186 UPDATE `list_options` SET `notes` = '1529-7' WHERE `title` = 'Skokomish' AND `list_id` = 'race';
9189 #IfNotRow2Dx2 list_options list_id race option_id skull_valley title Skull Valley
9190 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','skull_valley','Skull Valley','7370', '0',' 1594-1', 0);
9193 #IfRow2D list_options list_id race option_id skull_valley
9194 UPDATE `list_options` SET `notes` = '1594-1' WHERE `option_id` = 'skull_valley' AND `list_id` = 'race';
9197 #IfRow2D list_options list_id race title Skull Valley
9198 UPDATE `list_options` SET `notes` = '1594-1' WHERE `title` = 'Skull Valley' AND `list_id` = 'race';
9201 #IfNotRow2Dx2 list_options list_id race option_id skykomish title Skykomish
9202 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','skykomish','Skykomish','7380', '0',' 1530-5', 0);
9205 #IfRow2D list_options list_id race option_id skykomish
9206 UPDATE `list_options` SET `notes` = '1530-5' WHERE `option_id` = 'skykomish' AND `list_id` = 'race';
9209 #IfRow2D list_options list_id race title Skykomish
9210 UPDATE `list_options` SET `notes` = '1530-5' WHERE `title` = 'Skykomish' AND `list_id` = 'race';
9213 #IfNotRow2Dx2 list_options list_id race option_id slana title Slana
9214 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','slana','Slana','7390', '0',' 1794-7', 0);
9217 #IfRow2D list_options list_id race option_id slana
9218 UPDATE `list_options` SET `notes` = '1794-7' WHERE `option_id` = 'slana' AND `list_id` = 'race';
9221 #IfRow2D list_options list_id race title Slana
9222 UPDATE `list_options` SET `notes` = '1794-7' WHERE `title` = 'Slana' AND `list_id` = 'race';
9225 #IfNotRow2Dx2 list_options list_id race option_id sleetmute title Sleetmute
9226 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sleetmute','Sleetmute','7400', '0',' 1954-7', 0);
9229 #IfRow2D list_options list_id race option_id sleetmute
9230 UPDATE `list_options` SET `notes` = '1954-7' WHERE `option_id` = 'sleetmute' AND `list_id` = 'race';
9233 #IfRow2D list_options list_id race title Sleetmute
9234 UPDATE `list_options` SET `notes` = '1954-7' WHERE `title` = 'Sleetmute' AND `list_id` = 'race';
9237 #IfNotRow2Dx2 list_options list_id race option_id snohomish title Snohomish
9238 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','snohomish','Snohomish','7410', '0',' 1531-3', 0);
9241 #IfRow2D list_options list_id race option_id snohomish
9242 UPDATE `list_options` SET `notes` = '1531-3' WHERE `option_id` = 'snohomish' AND `list_id` = 'race';
9245 #IfRow2D list_options list_id race title Snohomish
9246 UPDATE `list_options` SET `notes` = '1531-3' WHERE `title` = 'Snohomish' AND `list_id` = 'race';
9249 #IfNotRow2Dx2 list_options list_id race option_id snoqualmie title Snoqualmie
9250 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','snoqualmie','Snoqualmie','7420', '0',' 1532-1', 0);
9253 #IfRow2D list_options list_id race option_id snoqualmie
9254 UPDATE `list_options` SET `notes` = '1532-1' WHERE `option_id` = 'snoqualmie' AND `list_id` = 'race';
9257 #IfRow2D list_options list_id race title Snoqualmie
9258 UPDATE `list_options` SET `notes` = '1532-1' WHERE `title` = 'Snoqualmie' AND `list_id` = 'race';
9261 #IfNotRow2Dx2 list_options list_id race option_id soboba title Soboba
9262 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','soboba','Soboba','7430', '0',' 1336-7', 0);
9265 #IfRow2D list_options list_id race option_id soboba
9266 UPDATE `list_options` SET `notes` = '1336-7' WHERE `option_id` = 'soboba' AND `list_id` = 'race';
9269 #IfRow2D list_options list_id race title Soboba
9270 UPDATE `list_options` SET `notes` = '1336-7' WHERE `title` = 'Soboba' AND `list_id` = 'race';
9273 #IfNotRow2Dx2 list_options list_id race option_id sokoagon_chippewa title Sokoagon Chippewa
9274 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sokoagon_chippewa','Sokoagon Chippewa','7440', '0',' 1146-0', 0);
9277 #IfRow2D list_options list_id race option_id sokoagon_chippewa
9278 UPDATE `list_options` SET `notes` = '1146-0' WHERE `option_id` = 'sokoagon_chippewa' AND `list_id` = 'race';
9281 #IfRow2D list_options list_id race title Sokoagon Chippewa
9282 UPDATE `list_options` SET `notes` = '1146-0' WHERE `title` = 'Sokoagon Chippewa' AND `list_id` = 'race';
9285 #IfNotRow2Dx2 list_options list_id race option_id solomon title Solomon
9286 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','solomon','Solomon','7450', '0',' 1882-0', 0);
9289 #IfRow2D list_options list_id race option_id solomon
9290 UPDATE `list_options` SET `notes` = '1882-0' WHERE `option_id` = 'solomon' AND `list_id` = 'race';
9293 #IfRow2D list_options list_id race title Solomon
9294 UPDATE `list_options` SET `notes` = '1882-0' WHERE `title` = 'Solomon' AND `list_id` = 'race';
9297 #IfNotRow2Dx2 list_options list_id race option_id solomon_islander title Solomon Islander
9298 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','solomon_islander','Solomon Islander','7460', '0',' 2103-0', 0);
9301 #IfRow2D list_options list_id race option_id solomon_islander
9302 UPDATE `list_options` SET `notes` = '2103-0' WHERE `option_id` = 'solomon_islander' AND `list_id` = 'race';
9305 #IfRow2D list_options list_id race title Solomon Islander
9306 UPDATE `list_options` SET `notes` = '2103-0' WHERE `title` = 'Solomon Islander' AND `list_id` = 'race';
9309 #IfNotRow2Dx2 list_options list_id race option_id south_american_indian title South American Indian
9310 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','south_american_indian','South American Indian','7470', '0',' 1073-6', 0);
9313 #IfRow2D list_options list_id race option_id south_american_indian
9314 UPDATE `list_options` SET `notes` = '1073-6' WHERE `option_id` = 'south_american_indian' AND `list_id` = 'race';
9317 #IfRow2D list_options list_id race title South American Indian
9318 UPDATE `list_options` SET `notes` = '1073-6' WHERE `title` = 'South American Indian' AND `list_id` = 'race';
9321 #IfNotRow2Dx2 list_options list_id race option_id south_fork_shoshone title South Fork Shoshone
9322 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','south_fork_shoshone','South Fork Shoshone','7480', '0',' 1595-8', 0);
9325 #IfRow2D list_options list_id race option_id south_fork_shoshone
9326 UPDATE `list_options` SET `notes` = '1595-8' WHERE `option_id` = 'south_fork_shoshone' AND `list_id` = 'race';
9329 #IfRow2D list_options list_id race title South Fork Shoshone
9330 UPDATE `list_options` SET `notes` = '1595-8' WHERE `title` = 'South Fork Shoshone' AND `list_id` = 'race';
9333 #IfNotRow2Dx2 list_options list_id race option_id south_naknek title South Naknek
9334 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','south_naknek','South Naknek','7490', '0',' 2024-8', 0);
9337 #IfRow2D list_options list_id race option_id south_naknek
9338 UPDATE `list_options` SET `notes` = '2024-8' WHERE `option_id` = 'south_naknek' AND `list_id` = 'race';
9341 #IfRow2D list_options list_id race title South Naknek
9342 UPDATE `list_options` SET `notes` = '2024-8' WHERE `title` = 'South Naknek' AND `list_id` = 'race';
9345 #IfNotRow2Dx2 list_options list_id race option_id southeast_alaska title Southeast Alaska
9346 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','southeast_alaska','Southeast Alaska','7500', '0',' 1811-9', 0);
9349 #IfRow2D list_options list_id race option_id southeast_alaska
9350 UPDATE `list_options` SET `notes` = '1811-9' WHERE `option_id` = 'southeast_alaska' AND `list_id` = 'race';
9353 #IfRow2D list_options list_id race title Southeast Alaska
9354 UPDATE `list_options` SET `notes` = '1811-9' WHERE `title` = 'Southeast Alaska' AND `list_id` = 'race';
9357 #IfNotRow2Dx2 list_options list_id race option_id southeastern_indians title Southeastern Indians
9358 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','southeastern_indians','Southeastern Indians','7510', '0',' 1244-3', 0);
9361 #IfRow2D list_options list_id race option_id southeastern_indians
9362 UPDATE `list_options` SET `notes` = '1244-3' WHERE `option_id` = 'southeastern_indians' AND `list_id` = 'race';
9365 #IfRow2D list_options list_id race title Southeastern Indians
9366 UPDATE `list_options` SET `notes` = '1244-3' WHERE `title` = 'Southeastern Indians' AND `list_id` = 'race';
9369 #IfNotRow2Dx2 list_options list_id race option_id southern_arapaho title Southern Arapaho
9370 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','southern_arapaho','Southern Arapaho','7520', '0',' 1023-1', 0);
9373 #IfRow2D list_options list_id race option_id southern_arapaho
9374 UPDATE `list_options` SET `notes` = '1023-1' WHERE `option_id` = 'southern_arapaho' AND `list_id` = 'race';
9377 #IfRow2D list_options list_id race title Southern Arapaho
9378 UPDATE `list_options` SET `notes` = '1023-1' WHERE `title` = 'Southern Arapaho' AND `list_id` = 'race';
9381 #IfNotRow2Dx2 list_options list_id race option_id southern_cheyenne title Southern Cheyenne
9382 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','southern_cheyenne','Southern Cheyenne','7530', '0',' 1104-9', 0);
9385 #IfRow2D list_options list_id race option_id southern_cheyenne
9386 UPDATE `list_options` SET `notes` = '1104-9' WHERE `option_id` = 'southern_cheyenne' AND `list_id` = 'race';
9389 #IfRow2D list_options list_id race title Southern Cheyenne
9390 UPDATE `list_options` SET `notes` = '1104-9' WHERE `title` = 'Southern Cheyenne' AND `list_id` = 'race';
9393 #IfNotRow2Dx2 list_options list_id race option_id southern_paiute title Southern Paiute
9394 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','southern_paiute','Southern Paiute','7540', '0',' 1433-2', 0);
9397 #IfRow2D list_options list_id race option_id southern_paiute
9398 UPDATE `list_options` SET `notes` = '1433-2' WHERE `option_id` = 'southern_paiute' AND `list_id` = 'race';
9401 #IfRow2D list_options list_id race title Southern Paiute
9402 UPDATE `list_options` SET `notes` = '1433-2' WHERE `title` = 'Southern Paiute' AND `list_id` = 'race';
9405 #IfNotRow2Dx2 list_options list_id race option_id spanish_american_indian title Spanish American Indian
9406 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','spanish_american_indian','Spanish American Indian','7550', '0',' 1074-4', 0);
9409 #IfRow2D list_options list_id race option_id spanish_american_indian
9410 UPDATE `list_options` SET `notes` = '1074-4' WHERE `option_id` = 'spanish_american_indian' AND `list_id` = 'race';
9413 #IfRow2D list_options list_id race title Spanish American Indian
9414 UPDATE `list_options` SET `notes` = '1074-4' WHERE `title` = 'Spanish American Indian' AND `list_id` = 'race';
9417 #IfNotRow2Dx2 list_options list_id race option_id spirit_lake_sioux title Spirit Lake Sioux
9418 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','spirit_lake_sioux','Spirit Lake Sioux','7560', '0',' 1632-9', 0);
9421 #IfRow2D list_options list_id race option_id spirit_lake_sioux
9422 UPDATE `list_options` SET `notes` = '1632-9' WHERE `option_id` = 'spirit_lake_sioux' AND `list_id` = 'race';
9425 #IfRow2D list_options list_id race title Spirit Lake Sioux
9426 UPDATE `list_options` SET `notes` = '1632-9' WHERE `title` = 'Spirit Lake Sioux' AND `list_id` = 'race';
9429 #IfNotRow2Dx2 list_options list_id race option_id spokane title Spokane
9430 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','spokane','Spokane','7570', '0',' 1645-1', 0);
9433 #IfRow2D list_options list_id race option_id spokane
9434 UPDATE `list_options` SET `notes` = '1645-1' WHERE `option_id` = 'spokane' AND `list_id` = 'race';
9437 #IfRow2D list_options list_id race title Spokane
9438 UPDATE `list_options` SET `notes` = '1645-1' WHERE `title` = 'Spokane' AND `list_id` = 'race';
9441 #IfNotRow2Dx2 list_options list_id race option_id squaxin_island title Squaxin Island
9442 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','squaxin_island','Squaxin Island','7580', '0',' 1533-9', 0);
9445 #IfRow2D list_options list_id race option_id squaxin_island
9446 UPDATE `list_options` SET `notes` = '1533-9' WHERE `option_id` = 'squaxin_island' AND `list_id` = 'race';
9449 #IfRow2D list_options list_id race title Squaxin Island
9450 UPDATE `list_options` SET `notes` = '1533-9' WHERE `title` = 'Squaxin Island' AND `list_id` = 'race';
9453 #IfNotRow2Dx2 list_options list_id race option_id sri_lankan title Sri Lankan
9454 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sri_lankan','Sri Lankan','7590', '0',' 2045-3', 0);
9457 #IfRow2D list_options list_id race option_id sri_lankan
9458 UPDATE `list_options` SET `notes` = '2045-3' WHERE `option_id` = 'sri_lankan' AND `list_id` = 'race';
9461 #IfRow2D list_options list_id race title Sri Lankan
9462 UPDATE `list_options` SET `notes` = '2045-3' WHERE `title` = 'Sri Lankan' AND `list_id` = 'race';
9465 #IfNotRow2Dx2 list_options list_id race option_id st_croix_chippewa title St. Croix Chippewa
9466 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','st_croix_chippewa','St. Croix Chippewa','7600', '0',' 1144-5', 0);
9469 #IfRow2D list_options list_id race option_id st_croix_chippewa
9470 UPDATE `list_options` SET `notes` = '1144-5' WHERE `option_id` = 'st_croix_chippewa' AND `list_id` = 'race';
9473 #IfRow2D list_options list_id race title St. Croix Chippewa
9474 UPDATE `list_options` SET `notes` = '1144-5' WHERE `title` = 'St. Croix Chippewa' AND `list_id` = 'race';
9477 #IfNotRow2Dx2 list_options list_id race option_id st_george title St. George
9478 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','st_george','St. George','7610', '0',' 2021-4', 0);
9481 #IfRow2D list_options list_id race option_id st_george
9482 UPDATE `list_options` SET `notes` = '2021-4' WHERE `option_id` = 'st_george' AND `list_id` = 'race';
9485 #IfRow2D list_options list_id race title St. George
9486 UPDATE `list_options` SET `notes` = '2021-4' WHERE `title` = 'St. George' AND `list_id` = 'race';
9489 #IfNotRow2D list_options list_id race option_id st_marys
9490 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','st_marys',"St. Mary's",'7620', '0',' 1963-8', 0);
9493 #IfRow2D list_options list_id race option_id st_marys
9494 UPDATE `list_options` SET `notes` = '1963-8' WHERE `option_id` = 'st_marys' AND `list_id` = 'race';
9497 #IfNotRow2Dx2 list_options list_id race option_id st_michael title St. Michael
9498 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','st_michael','St. Michael','7630', '0',' 1951-3', 0);
9501 #IfRow2D list_options list_id race option_id st_michael
9502 UPDATE `list_options` SET `notes` = '1951-3' WHERE `option_id` = 'st_michael' AND `list_id` = 'race';
9505 #IfRow2D list_options list_id race title St. Michael
9506 UPDATE `list_options` SET `notes` = '1951-3' WHERE `title` = 'St. Michael' AND `list_id` = 'race';
9509 #IfNotRow2Dx2 list_options list_id race option_id st_paul title St. Paul
9510 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','st_paul','St. Paul','7640', '0',' 2022-2', 0);
9513 #IfRow2D list_options list_id race option_id st_paul
9514 UPDATE `list_options` SET `notes` = '2022-2' WHERE `option_id` = 'st_paul' AND `list_id` = 'race';
9517 #IfRow2D list_options list_id race title St. Paul
9518 UPDATE `list_options` SET `notes` = '2022-2' WHERE `title` = 'St. Paul' AND `list_id` = 'race';
9521 #IfNotRow2Dx2 list_options list_id race option_id standing_rock_sioux title Standing Rock Sioux
9522 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','standing_rock_sioux','Standing Rock Sioux','7650', '0',' 1633-7', 0);
9525 #IfRow2D list_options list_id race option_id standing_rock_sioux
9526 UPDATE `list_options` SET `notes` = '1633-7' WHERE `option_id` = 'standing_rock_sioux' AND `list_id` = 'race';
9529 #IfRow2D list_options list_id race title Standing Rock Sioux
9530 UPDATE `list_options` SET `notes` = '1633-7' WHERE `title` = 'Standing Rock Sioux' AND `list_id` = 'race';
9533 #IfNotRow2Dx2 list_options list_id race option_id star_clan_of_muscogee_creeks title Star Clan of Muscogee Creeks
9534 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','star_clan_of_muscogee_creeks','Star Clan of Muscogee Creeks','7660', '0',' 1203-9', 0);
9537 #IfRow2D list_options list_id race option_id star_clan_of_muscogee_creeks
9538 UPDATE `list_options` SET `notes` = '1203-9' WHERE `option_id` = 'star_clan_of_muscogee_creeks' AND `list_id` = 'race';
9541 #IfRow2D list_options list_id race title Star Clan of Muscogee Creeks
9542 UPDATE `list_options` SET `notes` = '1203-9' WHERE `title` = 'Star Clan of Muscogee Creeks' AND `list_id` = 'race';
9545 #IfNotRow2Dx2 list_options list_id race option_id stebbins title Stebbins
9546 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stebbins','Stebbins','7670', '0',' 1955-4', 0);
9549 #IfRow2D list_options list_id race option_id stebbins
9550 UPDATE `list_options` SET `notes` = '1955-4' WHERE `option_id` = 'stebbins' AND `list_id` = 'race';
9553 #IfRow2D list_options list_id race title Stebbins
9554 UPDATE `list_options` SET `notes` = '1955-4' WHERE `title` = 'Stebbins' AND `list_id` = 'race';
9557 #IfNotRow2Dx2 list_options list_id race option_id steilacoom title Steilacoom
9558 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','steilacoom','Steilacoom','7680', '0',' 1534-7', 0);
9561 #IfRow2D list_options list_id race option_id steilacoom
9562 UPDATE `list_options` SET `notes` = '1534-7' WHERE `option_id` = 'steilacoom' AND `list_id` = 'race';
9565 #IfRow2D list_options list_id race title Steilacoom
9566 UPDATE `list_options` SET `notes` = '1534-7' WHERE `title` = 'Steilacoom' AND `list_id` = 'race';
9569 #IfNotRow2Dx2 list_options list_id race option_id stevens title Stevens
9570 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stevens','Stevens','7690', '0',' 1796-2', 0);
9573 #IfRow2D list_options list_id race option_id stevens
9574 UPDATE `list_options` SET `notes` = '1796-2' WHERE `option_id` = 'stevens' AND `list_id` = 'race';
9577 #IfRow2D list_options list_id race title Stevens
9578 UPDATE `list_options` SET `notes` = '1796-2' WHERE `title` = 'Stevens' AND `list_id` = 'race';
9581 #IfNotRow2Dx2 list_options list_id race option_id stewart title Stewart
9582 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stewart','Stewart','7700', '0',' 1647-7', 0);
9585 #IfRow2D list_options list_id race option_id stewart
9586 UPDATE `list_options` SET `notes` = '1647-7' WHERE `option_id` = 'stewart' AND `list_id` = 'race';
9589 #IfRow2D list_options list_id race title Stewart
9590 UPDATE `list_options` SET `notes` = '1647-7' WHERE `title` = 'Stewart' AND `list_id` = 'race';
9593 #IfNotRow2Dx2 list_options list_id race option_id stillaguamish title Stillaguamish
9594 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stillaguamish','Stillaguamish','7710', '0',' 1535-4', 0);
9597 #IfRow2D list_options list_id race option_id stillaguamish
9598 UPDATE `list_options` SET `notes` = '1535-4' WHERE `option_id` = 'stillaguamish' AND `list_id` = 'race';
9601 #IfRow2D list_options list_id race title Stillaguamish
9602 UPDATE `list_options` SET `notes` = '1535-4' WHERE `title` = 'Stillaguamish' AND `list_id` = 'race';
9605 #IfNotRow2Dx2 list_options list_id race option_id stockbridge title Stockbridge
9606 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stockbridge','Stockbridge','7720', '0',' 1649-3', 0);
9609 #IfRow2D list_options list_id race option_id stockbridge
9610 UPDATE `list_options` SET `notes` = '1649-3' WHERE `option_id` = 'stockbridge' AND `list_id` = 'race';
9613 #IfRow2D list_options list_id race title Stockbridge
9614 UPDATE `list_options` SET `notes` = '1649-3' WHERE `title` = 'Stockbridge' AND `list_id` = 'race';
9617 #IfNotRow2Dx2 list_options list_id race option_id stony_river title Stony River
9618 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stony_river','Stony River','7730', '0',' 1797-0', 0);
9621 #IfRow2D list_options list_id race option_id stony_river
9622 UPDATE `list_options` SET `notes` = '1797-0' WHERE `option_id` = 'stony_river' AND `list_id` = 'race';
9625 #IfRow2D list_options list_id race title Stony River
9626 UPDATE `list_options` SET `notes` = '1797-0' WHERE `title` = 'Stony River' AND `list_id` = 'race';
9629 #IfNotRow2Dx2 list_options list_id race option_id stonyford title Stonyford
9630 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','stonyford','Stonyford','7740', '0',' 1471-2', 0);
9633 #IfRow2D list_options list_id race option_id stonyford
9634 UPDATE `list_options` SET `notes` = '1471-2' WHERE `option_id` = 'stonyford' AND `list_id` = 'race';
9637 #IfRow2D list_options list_id race title Stonyford
9638 UPDATE `list_options` SET `notes` = '1471-2' WHERE `title` = 'Stonyford' AND `list_id` = 'race';
9641 #IfNotRow2Dx2 list_options list_id race option_id sugpiaq title Sugpiaq
9642 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sugpiaq','Sugpiaq','7750', '0',' 2002-4', 0);
9645 #IfRow2D list_options list_id race option_id sugpiaq
9646 UPDATE `list_options` SET `notes` = '2002-4' WHERE `option_id` = 'sugpiaq' AND `list_id` = 'race';
9649 #IfRow2D list_options list_id race title Sugpiaq
9650 UPDATE `list_options` SET `notes` = '2002-4' WHERE `title` = 'Sugpiaq' AND `list_id` = 'race';
9653 #IfNotRow2Dx2 list_options list_id race option_id sulphur_bank title Sulphur Bank
9654 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sulphur_bank','Sulphur Bank','7760', '0',' 1472-0', 0);
9657 #IfRow2D list_options list_id race option_id sulphur_bank
9658 UPDATE `list_options` SET `notes` = '1472-0' WHERE `option_id` = 'sulphur_bank' AND `list_id` = 'race';
9661 #IfRow2D list_options list_id race title Sulphur Bank
9662 UPDATE `list_options` SET `notes` = '1472-0' WHERE `title` = 'Sulphur Bank' AND `list_id` = 'race';
9665 #IfNotRow2Dx2 list_options list_id race option_id summit_lake title Summit Lake
9666 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','summit_lake','Summit Lake','7770', '0',' 1434-0', 0);
9669 #IfRow2D list_options list_id race option_id summit_lake
9670 UPDATE `list_options` SET `notes` = '1434-0' WHERE `option_id` = 'summit_lake' AND `list_id` = 'race';
9673 #IfRow2D list_options list_id race title Summit Lake
9674 UPDATE `list_options` SET `notes` = '1434-0' WHERE `title` = 'Summit Lake' AND `list_id` = 'race';
9677 #IfNotRow2Dx2 list_options list_id race option_id suqpigaq title Suqpigaq
9678 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','suqpigaq','Suqpigaq','7780', '0',' 2004-0', 0);
9681 #IfRow2D list_options list_id race option_id suqpigaq
9682 UPDATE `list_options` SET `notes` = '2004-0' WHERE `option_id` = 'suqpigaq' AND `list_id` = 'race';
9685 #IfRow2D list_options list_id race title Suqpigaq
9686 UPDATE `list_options` SET `notes` = '2004-0' WHERE `title` = 'Suqpigaq' AND `list_id` = 'race';
9689 #IfNotRow2Dx2 list_options list_id race option_id suquamish title Suquamish
9690 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','suquamish','Suquamish','7790', '0',' 1536-2', 0);
9693 #IfRow2D list_options list_id race option_id suquamish
9694 UPDATE `list_options` SET `notes` = '1536-2' WHERE `option_id` = 'suquamish' AND `list_id` = 'race';
9697 #IfRow2D list_options list_id race title Suquamish
9698 UPDATE `list_options` SET `notes` = '1536-2' WHERE `title` = 'Suquamish' AND `list_id` = 'race';
9701 #IfNotRow2Dx2 list_options list_id race option_id susanville title Susanville
9702 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','susanville','Susanville','7800', '0',' 1651-9', 0);
9705 #IfRow2D list_options list_id race option_id susanville
9706 UPDATE `list_options` SET `notes` = '1651-9' WHERE `option_id` = 'susanville' AND `list_id` = 'race';
9709 #IfRow2D list_options list_id race title Susanville
9710 UPDATE `list_options` SET `notes` = '1651-9' WHERE `title` = 'Susanville' AND `list_id` = 'race';
9713 #IfNotRow2Dx2 list_options list_id race option_id susquehanock title Susquehanock
9714 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','susquehanock','Susquehanock','7810', '0',' 1245-0', 0);
9717 #IfRow2D list_options list_id race option_id susquehanock
9718 UPDATE `list_options` SET `notes` = '1245-0' WHERE `option_id` = 'susquehanock' AND `list_id` = 'race';
9721 #IfRow2D list_options list_id race title Susquehanock
9722 UPDATE `list_options` SET `notes` = '1245-0' WHERE `title` = 'Susquehanock' AND `list_id` = 'race';
9725 #IfNotRow2Dx2 list_options list_id race option_id swinomish title Swinomish
9726 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','swinomish','Swinomish','7820', '0',' 1537-0', 0);
9729 #IfRow2D list_options list_id race option_id swinomish
9730 UPDATE `list_options` SET `notes` = '1537-0' WHERE `option_id` = 'swinomish' AND `list_id` = 'race';
9733 #IfRow2D list_options list_id race title Swinomish
9734 UPDATE `list_options` SET `notes` = '1537-0' WHERE `title` = 'Swinomish' AND `list_id` = 'race';
9737 #IfNotRow2Dx2 list_options list_id race option_id sycuan title Sycuan
9738 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','sycuan','Sycuan','7830', '0',' 1231-0', 0);
9741 #IfRow2D list_options list_id race option_id sycuan
9742 UPDATE `list_options` SET `notes` = '1231-0' WHERE `option_id` = 'sycuan' AND `list_id` = 'race';
9745 #IfRow2D list_options list_id race title Sycuan
9746 UPDATE `list_options` SET `notes` = '1231-0' WHERE `title` = 'Sycuan' AND `list_id` = 'race';
9749 #IfNotRow2Dx2 list_options list_id race option_id syrian title Syrian
9750 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','syrian','Syrian','7840', '0',' 2125-3', 0);
9753 #IfRow2D list_options list_id race option_id syrian
9754 UPDATE `list_options` SET `notes` = '2125-3' WHERE `option_id` = 'syrian' AND `list_id` = 'race';
9757 #IfRow2D list_options list_id race title Syrian
9758 UPDATE `list_options` SET `notes` = '2125-3' WHERE `title` = 'Syrian' AND `list_id` = 'race';
9761 #IfNotRow2Dx2 list_options list_id race option_id table_bluff title Table Bluff
9762 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','table_bluff','Table Bluff','7850', '0',' 1705-3', 0);
9765 #IfRow2D list_options list_id race option_id table_bluff
9766 UPDATE `list_options` SET `notes` = '1705-3' WHERE `option_id` = 'table_bluff' AND `list_id` = 'race';
9769 #IfRow2D list_options list_id race title Table Bluff
9770 UPDATE `list_options` SET `notes` = '1705-3' WHERE `title` = 'Table Bluff' AND `list_id` = 'race';
9773 #IfNotRow2Dx2 list_options list_id race option_id tachi title Tachi
9774 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tachi','Tachi','7860', '0',' 1719-4', 0);
9777 #IfRow2D list_options list_id race option_id tachi
9778 UPDATE `list_options` SET `notes` = '1719-4' WHERE `option_id` = 'tachi' AND `list_id` = 'race';
9781 #IfRow2D list_options list_id race title Tachi
9782 UPDATE `list_options` SET `notes` = '1719-4' WHERE `title` = 'Tachi' AND `list_id` = 'race';
9785 #IfNotRow2Dx2 list_options list_id race option_id tahitian title Tahitian
9786 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tahitian','Tahitian','7870', '0',' 2081-8', 0);
9789 #IfRow2D list_options list_id race option_id tahitian
9790 UPDATE `list_options` SET `notes` = '2081-8' WHERE `option_id` = 'tahitian' AND `list_id` = 'race';
9793 #IfRow2D list_options list_id race title Tahitian
9794 UPDATE `list_options` SET `notes` = '2081-8' WHERE `title` = 'Tahitian' AND `list_id` = 'race';
9797 #IfNotRow2Dx2 list_options list_id race option_id taiwanese title Taiwanese
9798 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','taiwanese','Taiwanese','7880', '0',' 2035-4', 0);
9801 #IfRow2D list_options list_id race option_id taiwanese
9802 UPDATE `list_options` SET `notes` = '2035-4' WHERE `option_id` = 'taiwanese' AND `list_id` = 'race';
9805 #IfRow2D list_options list_id race title Taiwanese
9806 UPDATE `list_options` SET `notes` = '2035-4' WHERE `title` = 'Taiwanese' AND `list_id` = 'race';
9809 #IfNotRow2Dx2 list_options list_id race option_id takelma title Takelma
9810 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','takelma','Takelma','7890', '0',' 1063-7', 0);
9813 #IfRow2D list_options list_id race option_id takelma
9814 UPDATE `list_options` SET `notes` = '1063-7' WHERE `option_id` = 'takelma' AND `list_id` = 'race';
9817 #IfRow2D list_options list_id race title Takelma
9818 UPDATE `list_options` SET `notes` = '1063-7' WHERE `title` = 'Takelma' AND `list_id` = 'race';
9821 #IfNotRow2Dx2 list_options list_id race option_id takotna title Takotna
9822 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','takotna','Takotna','7900', '0',' 1798-8', 0);
9825 #IfRow2D list_options list_id race option_id takotna
9826 UPDATE `list_options` SET `notes` = '1798-8' WHERE `option_id` = 'takotna' AND `list_id` = 'race';
9829 #IfRow2D list_options list_id race title Takotna
9830 UPDATE `list_options` SET `notes` = '1798-8' WHERE `title` = 'Takotna' AND `list_id` = 'race';
9833 #IfNotRow2Dx2 list_options list_id race option_id talakamish title Talakamish
9834 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','talakamish','Talakamish','7910', '0',' 1397-9', 0);
9837 #IfRow2D list_options list_id race option_id talakamish
9838 UPDATE `list_options` SET `notes` = '1397-9' WHERE `option_id` = 'talakamish' AND `list_id` = 'race';
9841 #IfRow2D list_options list_id race title Talakamish
9842 UPDATE `list_options` SET `notes` = '1397-9' WHERE `title` = 'Talakamish' AND `list_id` = 'race';
9845 #IfNotRow2Dx2 list_options list_id race option_id tanacross title Tanacross
9846 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tanacross','Tanacross','7920', '0',' 1799-6', 0);
9849 #IfRow2D list_options list_id race option_id tanacross
9850 UPDATE `list_options` SET `notes` = '1799-6' WHERE `option_id` = 'tanacross' AND `list_id` = 'race';
9853 #IfRow2D list_options list_id race title Tanacross
9854 UPDATE `list_options` SET `notes` = '1799-6' WHERE `title` = 'Tanacross' AND `list_id` = 'race';
9857 #IfNotRow2Dx2 list_options list_id race option_id tanaina title Tanaina
9858 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tanaina','Tanaina','7930', '0',' 1800-2', 0);
9861 #IfRow2D list_options list_id race option_id tanaina
9862 UPDATE `list_options` SET `notes` = '1800-2' WHERE `option_id` = 'tanaina' AND `list_id` = 'race';
9865 #IfRow2D list_options list_id race title Tanaina
9866 UPDATE `list_options` SET `notes` = '1800-2' WHERE `title` = 'Tanaina' AND `list_id` = 'race';
9869 #IfNotRow2Dx2 list_options list_id race option_id tanana title Tanana
9870 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tanana','Tanana','7940', '0',' 1801-0', 0);
9873 #IfRow2D list_options list_id race option_id tanana
9874 UPDATE `list_options` SET `notes` = '1801-0' WHERE `option_id` = 'tanana' AND `list_id` = 'race';
9877 #IfRow2D list_options list_id race title Tanana
9878 UPDATE `list_options` SET `notes` = '1801-0' WHERE `title` = 'Tanana' AND `list_id` = 'race';
9881 #IfNotRow2Dx2 list_options list_id race option_id tanana_chiefs title Tanana Chiefs
9882 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tanana_chiefs','Tanana Chiefs','7950', '0',' 1802-8', 0);
9885 #IfRow2D list_options list_id race option_id tanana_chiefs
9886 UPDATE `list_options` SET `notes` = '1802-8' WHERE `option_id` = 'tanana_chiefs' AND `list_id` = 'race';
9889 #IfRow2D list_options list_id race title Tanana Chiefs
9890 UPDATE `list_options` SET `notes` = '1802-8' WHERE `title` = 'Tanana Chiefs' AND `list_id` = 'race';
9893 #IfNotRow2Dx2 list_options list_id race option_id taos title Taos
9894 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','taos','Taos','7960', '0',' 1511-5', 0);
9897 #IfRow2D list_options list_id race option_id taos
9898 UPDATE `list_options` SET `notes` = '1511-5' WHERE `option_id` = 'taos' AND `list_id` = 'race';
9901 #IfRow2D list_options list_id race title Taos
9902 UPDATE `list_options` SET `notes` = '1511-5' WHERE `title` = 'Taos' AND `list_id` = 'race';
9905 #IfNotRow2Dx2 list_options list_id race option_id tatitlek title Tatitlek
9906 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tatitlek','Tatitlek','7970', '0',' 1969-5', 0);
9909 #IfRow2D list_options list_id race option_id tatitlek
9910 UPDATE `list_options` SET `notes` = '1969-5' WHERE `option_id` = 'tatitlek' AND `list_id` = 'race';
9913 #IfRow2D list_options list_id race title Tatitlek
9914 UPDATE `list_options` SET `notes` = '1969-5' WHERE `title` = 'Tatitlek' AND `list_id` = 'race';
9917 #IfNotRow2Dx2 list_options list_id race option_id tazlina title Tazlina
9918 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tazlina','Tazlina','7980', '0',' 1803-6', 0);
9921 #IfRow2D list_options list_id race option_id tazlina
9922 UPDATE `list_options` SET `notes` = '1803-6' WHERE `option_id` = 'tazlina' AND `list_id` = 'race';
9925 #IfRow2D list_options list_id race title Tazlina
9926 UPDATE `list_options` SET `notes` = '1803-6' WHERE `title` = 'Tazlina' AND `list_id` = 'race';
9929 #IfNotRow2Dx2 list_options list_id race option_id telida title Telida
9930 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','telida','Telida','7990', '0',' 1804-4', 0);
9933 #IfRow2D list_options list_id race option_id telida
9934 UPDATE `list_options` SET `notes` = '1804-4' WHERE `option_id` = 'telida' AND `list_id` = 'race';
9937 #IfRow2D list_options list_id race title Telida
9938 UPDATE `list_options` SET `notes` = '1804-4' WHERE `title` = 'Telida' AND `list_id` = 'race';
9941 #IfNotRow2Dx2 list_options list_id race option_id teller title Teller
9942 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','teller','Teller','8000', '0',' 1883-8', 0);
9945 #IfRow2D list_options list_id race option_id teller
9946 UPDATE `list_options` SET `notes` = '1883-8' WHERE `option_id` = 'teller' AND `list_id` = 'race';
9949 #IfRow2D list_options list_id race title Teller
9950 UPDATE `list_options` SET `notes` = '1883-8' WHERE `title` = 'Teller' AND `list_id` = 'race';
9953 #IfNotRow2Dx2 list_options list_id race option_id temecula title Temecula
9954 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','temecula','Temecula','8010', '0',' 1338-3', 0);
9957 #IfRow2D list_options list_id race option_id temecula
9958 UPDATE `list_options` SET `notes` = '1338-3' WHERE `option_id` = 'temecula' AND `list_id` = 'race';
9961 #IfRow2D list_options list_id race title Temecula
9962 UPDATE `list_options` SET `notes` = '1338-3' WHERE `title` = 'Temecula' AND `list_id` = 'race';
9965 #IfNotRow2Dx2 list_options list_id race option_id te-moak_western_shoshone title Te-Moak Western Shoshone
9966 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','te-moak_western_shoshone','Te-Moak Western Shoshone','8020', '0',' 1596-6', 0);
9969 #IfRow2D list_options list_id race option_id te-moak_western_shoshone
9970 UPDATE `list_options` SET `notes` = '1596-6' WHERE `option_id` = 'te-moak_western_shoshone' AND `list_id` = 'race';
9973 #IfRow2D list_options list_id race title Te-Moak Western Shoshone
9974 UPDATE `list_options` SET `notes` = '1596-6' WHERE `title` = 'Te-Moak Western Shoshone' AND `list_id` = 'race';
9977 #IfNotRow2Dx2 list_options list_id race option_id tenakee_springs title Tenakee Springs
9978 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tenakee_springs','Tenakee Springs','8030', '0',' 1832-5', 0);
9981 #IfRow2D list_options list_id race option_id tenakee_springs
9982 UPDATE `list_options` SET `notes` = '1832-5' WHERE `option_id` = 'tenakee_springs' AND `list_id` = 'race';
9985 #IfRow2D list_options list_id race title Tenakee Springs
9986 UPDATE `list_options` SET `notes` = '1832-5' WHERE `title` = 'Tenakee Springs' AND `list_id` = 'race';
9989 #IfNotRow2Dx2 list_options list_id race option_id tenino title Tenino
9990 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tenino','Tenino','8040', '0',' 1398-7', 0);
9993 #IfRow2D list_options list_id race option_id tenino
9994 UPDATE `list_options` SET `notes` = '1398-7' WHERE `option_id` = 'tenino' AND `list_id` = 'race';
9997 #IfRow2D list_options list_id race title Tenino
9998 UPDATE `list_options` SET `notes` = '1398-7' WHERE `title` = 'Tenino' AND `list_id` = 'race';
10001 #IfNotRow2Dx2 list_options list_id race option_id tesuque title Tesuque
10002 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tesuque','Tesuque','8050', '0',' 1512-3', 0);
10005 #IfRow2D list_options list_id race option_id tesuque
10006 UPDATE `list_options` SET `notes` = '1512-3' WHERE `option_id` = 'tesuque' AND `list_id` = 'race';
10009 #IfRow2D list_options list_id race title Tesuque
10010 UPDATE `list_options` SET `notes` = '1512-3' WHERE `title` = 'Tesuque' AND `list_id` = 'race';
10013 #IfNotRow2Dx2 list_options list_id race option_id tetlin title Tetlin
10014 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tetlin','Tetlin','8060', '0',' 1805-1', 0);
10017 #IfRow2D list_options list_id race option_id tetlin
10018 UPDATE `list_options` SET `notes` = '1805-1' WHERE `option_id` = 'tetlin' AND `list_id` = 'race';
10021 #IfRow2D list_options list_id race title Tetlin
10022 UPDATE `list_options` SET `notes` = '1805-1' WHERE `title` = 'Tetlin' AND `list_id` = 'race';
10025 #IfNotRow2Dx2 list_options list_id race option_id teton_sioux title Teton Sioux
10026 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','teton_sioux','Teton Sioux','8070', '0',' 1634-5', 0);
10029 #IfRow2D list_options list_id race option_id teton_sioux
10030 UPDATE `list_options` SET `notes` = '1634-5' WHERE `option_id` = 'teton_sioux' AND `list_id` = 'race';
10033 #IfRow2D list_options list_id race title Teton Sioux
10034 UPDATE `list_options` SET `notes` = '1634-5' WHERE `title` = 'Teton Sioux' AND `list_id` = 'race';
10037 #IfNotRow2Dx2 list_options list_id race option_id tewa title Tewa
10038 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tewa','Tewa','8080', '0',' 1513-1', 0);
10041 #IfRow2D list_options list_id race option_id tewa
10042 UPDATE `list_options` SET `notes` = '1513-1' WHERE `option_id` = 'tewa' AND `list_id` = 'race';
10045 #IfRow2D list_options list_id race title Tewa
10046 UPDATE `list_options` SET `notes` = '1513-1' WHERE `title` = 'Tewa' AND `list_id` = 'race';
10049 #IfNotRow2Dx2 list_options list_id race option_id texas_kickapoo title Texas Kickapoo
10050 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','texas_kickapoo','Texas Kickapoo','8090', '0',' 1307-8', 0);
10053 #IfRow2D list_options list_id race option_id texas_kickapoo
10054 UPDATE `list_options` SET `notes` = '1307-8' WHERE `option_id` = 'texas_kickapoo' AND `list_id` = 'race';
10057 #IfRow2D list_options list_id race title Texas Kickapoo
10058 UPDATE `list_options` SET `notes` = '1307-8' WHERE `title` = 'Texas Kickapoo' AND `list_id` = 'race';
10061 #IfNotRow2Dx2 list_options list_id race option_id thai title Thai
10062 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','thai','Thai','8100', '0',' 2046-1', 0);
10065 #IfRow2D list_options list_id race option_id thai
10066 UPDATE `list_options` SET `notes` = '2046-1' WHERE `option_id` = 'thai' AND `list_id` = 'race';
10069 #IfRow2D list_options list_id race title Thai
10070 UPDATE `list_options` SET `notes` = '2046-1' WHERE `title` = 'Thai' AND `list_id` = 'race';
10073 #IfNotRow2Dx2 list_options list_id race option_id thlopthlocco title Thlopthlocco
10074 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','thlopthlocco','Thlopthlocco','8110', '0',' 1204-7', 0);
10077 #IfRow2D list_options list_id race option_id thlopthlocco
10078 UPDATE `list_options` SET `notes` = '1204-7' WHERE `option_id` = 'thlopthlocco' AND `list_id` = 'race';
10081 #IfRow2D list_options list_id race title Thlopthlocco
10082 UPDATE `list_options` SET `notes` = '1204-7' WHERE `title` = 'Thlopthlocco' AND `list_id` = 'race';
10085 #IfNotRow2Dx2 list_options list_id race option_id tigua title Tigua
10086 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tigua','Tigua','8120', '0',' 1514-9', 0);
10089 #IfRow2D list_options list_id race option_id tigua
10090 UPDATE `list_options` SET `notes` = '1514-9' WHERE `option_id` = 'tigua' AND `list_id` = 'race';
10093 #IfRow2D list_options list_id race title Tigua
10094 UPDATE `list_options` SET `notes` = '1514-9' WHERE `title` = 'Tigua' AND `list_id` = 'race';
10097 #IfNotRow2Dx2 list_options list_id race option_id tillamook title Tillamook
10098 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tillamook','Tillamook','8130', '0',' 1399-5', 0);
10101 #IfRow2D list_options list_id race option_id tillamook
10102 UPDATE `list_options` SET `notes` = '1399-5' WHERE `option_id` = 'tillamook' AND `list_id` = 'race';
10105 #IfRow2D list_options list_id race title Tillamook
10106 UPDATE `list_options` SET `notes` = '1399-5' WHERE `title` = 'Tillamook' AND `list_id` = 'race';
10109 #IfNotRow2Dx2 list_options list_id race option_id timbi-sha_shoshone title Timbi-Sha Shoshone
10110 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','timbi-sha_shoshone','Timbi-Sha Shoshone','8140', '0',' 1597-4', 0);
10113 #IfRow2D list_options list_id race option_id timbi-sha_shoshone
10114 UPDATE `list_options` SET `notes` = '1597-4' WHERE `option_id` = 'timbi-sha_shoshone' AND `list_id` = 'race';
10117 #IfRow2D list_options list_id race title Timbi-Sha Shoshone
10118 UPDATE `list_options` SET `notes` = '1597-4' WHERE `title` = 'Timbi-Sha Shoshone' AND `list_id` = 'race';
10121 #IfNotRow2Dx2 list_options list_id race option_id tlingit title Tlingit
10122 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tlingit','Tlingit','8150', '0',' 1833-3', 0);
10125 #IfRow2D list_options list_id race option_id tlingit
10126 UPDATE `list_options` SET `notes` = '1833-3' WHERE `option_id` = 'tlingit' AND `list_id` = 'race';
10129 #IfRow2D list_options list_id race title Tlingit
10130 UPDATE `list_options` SET `notes` = '1833-3' WHERE `title` = 'Tlingit' AND `list_id` = 'race';
10133 #IfNotRow2Dx2 list_options list_id race option_id tlingit-haida title Tlingit-Haida
10134 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tlingit-haida','Tlingit-Haida','8160', '0',' 1813-5', 0);
10137 #IfRow2D list_options list_id race option_id tlingit-haida
10138 UPDATE `list_options` SET `notes` = '1813-5' WHERE `option_id` = 'tlingit-haida' AND `list_id` = 'race';
10141 #IfRow2D list_options list_id race title Tlingit-Haida
10142 UPDATE `list_options` SET `notes` = '1813-5' WHERE `title` = 'Tlingit-Haida' AND `list_id` = 'race';
10145 #IfNotRow2Dx2 list_options list_id race option_id tobagoan title Tobagoan
10146 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tobagoan','Tobagoan','8170', '0',' 2073-5', 0);
10149 #IfRow2D list_options list_id race option_id tobagoan
10150 UPDATE `list_options` SET `notes` = '2073-5' WHERE `option_id` = 'tobagoan' AND `list_id` = 'race';
10153 #IfRow2D list_options list_id race title Tobagoan
10154 UPDATE `list_options` SET `notes` = '2073-5' WHERE `title` = 'Tobagoan' AND `list_id` = 'race';
10157 #IfNotRow2Dx2 list_options list_id race option_id togiak title Togiak
10158 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','togiak','Togiak','8180', '0',' 1956-2', 0);
10161 #IfRow2D list_options list_id race option_id togiak
10162 UPDATE `list_options` SET `notes` = '1956-2' WHERE `option_id` = 'togiak' AND `list_id` = 'race';
10165 #IfRow2D list_options list_id race title Togiak
10166 UPDATE `list_options` SET `notes` = '1956-2' WHERE `title` = 'Togiak' AND `list_id` = 'race';
10169 #IfNotRow2D list_options list_id race option_id tohono_oodham
10170 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tohono_oodham',"Tohono O'Odham",'8190', '0',' 1653-5', 0);
10173 #IfRow2D list_options list_id race option_id tohono_oodham
10174 UPDATE `list_options` SET `notes` = '1653-5' WHERE `option_id` = 'tohono_oodham' AND `list_id` = 'race';
10177 #IfNotRow2Dx2 list_options list_id race option_id tok title Tok
10178 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tok','Tok','8200', '0',' 1806-9', 0);
10181 #IfRow2D list_options list_id race option_id tok
10182 UPDATE `list_options` SET `notes` = '1806-9' WHERE `option_id` = 'tok' AND `list_id` = 'race';
10185 #IfRow2D list_options list_id race title Tok
10186 UPDATE `list_options` SET `notes` = '1806-9' WHERE `title` = 'Tok' AND `list_id` = 'race';
10189 #IfNotRow2Dx2 list_options list_id race option_id tokelauan title Tokelauan
10190 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tokelauan','Tokelauan','8210', '0',' 2083-4', 0);
10193 #IfRow2D list_options list_id race option_id tokelauan
10194 UPDATE `list_options` SET `notes` = '2083-4' WHERE `option_id` = 'tokelauan' AND `list_id` = 'race';
10197 #IfRow2D list_options list_id race title Tokelauan
10198 UPDATE `list_options` SET `notes` = '2083-4' WHERE `title` = 'Tokelauan' AND `list_id` = 'race';
10201 #IfNotRow2Dx2 list_options list_id race option_id toksook title Toksook
10202 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','toksook','Toksook','8220', '0',' 1957-0', 0);
10205 #IfRow2D list_options list_id race option_id toksook
10206 UPDATE `list_options` SET `notes` = '1957-0' WHERE `option_id` = 'toksook' AND `list_id` = 'race';
10209 #IfRow2D list_options list_id race title Toksook
10210 UPDATE `list_options` SET `notes` = '1957-0' WHERE `title` = 'Toksook' AND `list_id` = 'race';
10213 #IfNotRow2Dx2 list_options list_id race option_id tolowa title Tolowa
10214 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tolowa','Tolowa','8230', '0',' 1659-2', 0);
10217 #IfRow2D list_options list_id race option_id tolowa
10218 UPDATE `list_options` SET `notes` = '1659-2' WHERE `option_id` = 'tolowa' AND `list_id` = 'race';
10221 #IfRow2D list_options list_id race title Tolowa
10222 UPDATE `list_options` SET `notes` = '1659-2' WHERE `title` = 'Tolowa' AND `list_id` = 'race';
10225 #IfNotRow2Dx2 list_options list_id race option_id tonawanda_seneca title Tonawanda Seneca
10226 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tonawanda_seneca','Tonawanda Seneca','8240', '0',' 1293-0', 0);
10229 #IfRow2D list_options list_id race option_id tonawanda_seneca
10230 UPDATE `list_options` SET `notes` = '1293-0' WHERE `option_id` = 'tonawanda_seneca' AND `list_id` = 'race';
10233 #IfRow2D list_options list_id race title Tonawanda Seneca
10234 UPDATE `list_options` SET `notes` = '1293-0' WHERE `title` = 'Tonawanda Seneca' AND `list_id` = 'race';
10237 #IfNotRow2Dx2 list_options list_id race option_id tongan title Tongan
10238 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tongan','Tongan','8250', '0',' 2082-6', 0);
10241 #IfRow2D list_options list_id race option_id tongan
10242 UPDATE `list_options` SET `notes` = '2082-6' WHERE `option_id` = 'tongan' AND `list_id` = 'race';
10245 #IfRow2D list_options list_id race title Tongan
10246 UPDATE `list_options` SET `notes` = '2082-6' WHERE `title` = 'Tongan' AND `list_id` = 'race';
10249 #IfNotRow2Dx2 list_options list_id race option_id tonkawa title Tonkawa
10250 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tonkawa','Tonkawa','8260', '0',' 1661-8', 0);
10253 #IfRow2D list_options list_id race option_id tonkawa
10254 UPDATE `list_options` SET `notes` = '1661-8' WHERE `option_id` = 'tonkawa' AND `list_id` = 'race';
10257 #IfRow2D list_options list_id race title Tonkawa
10258 UPDATE `list_options` SET `notes` = '1661-8' WHERE `title` = 'Tonkawa' AND `list_id` = 'race';
10261 #IfNotRow2Dx2 list_options list_id race option_id torres-martinez title Torres-Martinez
10262 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','torres-martinez','Torres-Martinez','8270', '0',' 1051-2', 0);
10265 #IfRow2D list_options list_id race option_id torres-martinez
10266 UPDATE `list_options` SET `notes` = '1051-2' WHERE `option_id` = 'torres-martinez' AND `list_id` = 'race';
10269 #IfRow2D list_options list_id race title Torres-Martinez
10270 UPDATE `list_options` SET `notes` = '1051-2' WHERE `title` = 'Torres-Martinez' AND `list_id` = 'race';
10273 #IfNotRow2Dx2 list_options list_id race option_id trinidadian title Trinidadian
10274 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','trinidadian','Trinidadian','8280', '0',' 2074-3', 0);
10277 #IfRow2D list_options list_id race option_id trinidadian
10278 UPDATE `list_options` SET `notes` = '2074-3' WHERE `option_id` = 'trinidadian' AND `list_id` = 'race';
10281 #IfRow2D list_options list_id race title Trinidadian
10282 UPDATE `list_options` SET `notes` = '2074-3' WHERE `title` = 'Trinidadian' AND `list_id` = 'race';
10285 #IfNotRow2Dx2 list_options list_id race option_id trinity title Trinity
10286 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','trinity','Trinity','8290', '0',' 1272-4', 0);
10289 #IfRow2D list_options list_id race option_id trinity
10290 UPDATE `list_options` SET `notes` = '1272-4' WHERE `option_id` = 'trinity' AND `list_id` = 'race';
10293 #IfRow2D list_options list_id race title Trinity
10294 UPDATE `list_options` SET `notes` = '1272-4' WHERE `title` = 'Trinity' AND `list_id` = 'race';
10297 #IfNotRow2Dx2 list_options list_id race option_id tsimshian title Tsimshian
10298 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tsimshian','Tsimshian','8300', '0',' 1837-4', 0);
10301 #IfRow2D list_options list_id race option_id tsimshian
10302 UPDATE `list_options` SET `notes` = '1837-4' WHERE `option_id` = 'tsimshian' AND `list_id` = 'race';
10305 #IfRow2D list_options list_id race title Tsimshian
10306 UPDATE `list_options` SET `notes` = '1837-4' WHERE `title` = 'Tsimshian' AND `list_id` = 'race';
10309 #IfNotRow2Dx2 list_options list_id race option_id tuckabachee title Tuckabachee
10310 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tuckabachee','Tuckabachee','8310', '0',' 1205-4', 0);
10313 #IfRow2D list_options list_id race option_id tuckabachee
10314 UPDATE `list_options` SET `notes` = '1205-4' WHERE `option_id` = 'tuckabachee' AND `list_id` = 'race';
10317 #IfRow2D list_options list_id race title Tuckabachee
10318 UPDATE `list_options` SET `notes` = '1205-4' WHERE `title` = 'Tuckabachee' AND `list_id` = 'race';
10321 #IfNotRow2Dx2 list_options list_id race option_id tulalip title Tulalip
10322 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tulalip','Tulalip','8320', '0',' 1538-8', 0);
10325 #IfRow2D list_options list_id race option_id tulalip
10326 UPDATE `list_options` SET `notes` = '1538-8' WHERE `option_id` = 'tulalip' AND `list_id` = 'race';
10329 #IfRow2D list_options list_id race title Tulalip
10330 UPDATE `list_options` SET `notes` = '1538-8' WHERE `title` = 'Tulalip' AND `list_id` = 'race';
10333 #IfNotRow2Dx2 list_options list_id race option_id tule_river title Tule River
10334 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tule_river','Tule River','8330', '0',' 1720-2', 0);
10337 #IfRow2D list_options list_id race option_id tule_river
10338 UPDATE `list_options` SET `notes` = '1720-2' WHERE `option_id` = 'tule_river' AND `list_id` = 'race';
10341 #IfRow2D list_options list_id race title Tule River
10342 UPDATE `list_options` SET `notes` = '1720-2' WHERE `title` = 'Tule River' AND `list_id` = 'race';
10345 #IfNotRow2Dx2 list_options list_id race option_id tulukskak title Tulukskak
10346 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tulukskak','Tulukskak','8340', '0',' 1958-8', 0);
10349 #IfRow2D list_options list_id race option_id tulukskak
10350 UPDATE `list_options` SET `notes` = '1958-8' WHERE `option_id` = 'tulukskak' AND `list_id` = 'race';
10353 #IfRow2D list_options list_id race title Tulukskak
10354 UPDATE `list_options` SET `notes` = '1958-8' WHERE `title` = 'Tulukskak' AND `list_id` = 'race';
10357 #IfNotRow2Dx2 list_options list_id race option_id tunica_biloxi title Tunica Biloxi
10358 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tunica_biloxi','Tunica Biloxi','8350', '0',' 1246-8', 0);
10361 #IfRow2D list_options list_id race option_id tunica_biloxi
10362 UPDATE `list_options` SET `notes` = '1246-8' WHERE `option_id` = 'tunica_biloxi' AND `list_id` = 'race';
10365 #IfRow2D list_options list_id race title Tunica Biloxi
10366 UPDATE `list_options` SET `notes` = '1246-8' WHERE `title` = 'Tunica Biloxi' AND `list_id` = 'race';
10369 #IfNotRow2Dx2 list_options list_id race option_id tuntutuliak title Tuntutuliak
10370 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tuntutuliak','Tuntutuliak','8360', '0',' 1959-6', 0);
10373 #IfRow2D list_options list_id race option_id tuntutuliak
10374 UPDATE `list_options` SET `notes` = '1959-6' WHERE `option_id` = 'tuntutuliak' AND `list_id` = 'race';
10377 #IfRow2D list_options list_id race title Tuntutuliak
10378 UPDATE `list_options` SET `notes` = '1959-6' WHERE `title` = 'Tuntutuliak' AND `list_id` = 'race';
10381 #IfNotRow2Dx2 list_options list_id race option_id tununak title Tununak
10382 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tununak','Tununak','8370', '0',' 1960-4', 0);
10385 #IfRow2D list_options list_id race option_id tununak
10386 UPDATE `list_options` SET `notes` = '1960-4' WHERE `option_id` = 'tununak' AND `list_id` = 'race';
10389 #IfRow2D list_options list_id race title Tununak
10390 UPDATE `list_options` SET `notes` = '1960-4' WHERE `title` = 'Tununak' AND `list_id` = 'race';
10393 #IfNotRow2Dx2 list_options list_id race option_id turtle_mountain title Turtle Mountain
10394 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','turtle_mountain','Turtle Mountain','8380', '0',' 1147-8', 0);
10397 #IfRow2D list_options list_id race option_id turtle_mountain
10398 UPDATE `list_options` SET `notes` = '1147-8' WHERE `option_id` = 'turtle_mountain' AND `list_id` = 'race';
10401 #IfRow2D list_options list_id race title Turtle Mountain
10402 UPDATE `list_options` SET `notes` = '1147-8' WHERE `title` = 'Turtle Mountain' AND `list_id` = 'race';
10405 #IfNotRow2Dx2 list_options list_id race option_id tuscarora title Tuscarora
10406 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tuscarora','Tuscarora','8390', '0',' 1294-8', 0);
10409 #IfRow2D list_options list_id race option_id tuscarora
10410 UPDATE `list_options` SET `notes` = '1294-8' WHERE `option_id` = 'tuscarora' AND `list_id` = 'race';
10413 #IfRow2D list_options list_id race title Tuscarora
10414 UPDATE `list_options` SET `notes` = '1294-8' WHERE `title` = 'Tuscarora' AND `list_id` = 'race';
10417 #IfNotRow2Dx2 list_options list_id race option_id tuscola title Tuscola
10418 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tuscola','Tuscola','8400', '0',' 1096-7', 0);
10421 #IfRow2D list_options list_id race option_id tuscola
10422 UPDATE `list_options` SET `notes` = '1096-7' WHERE `option_id` = 'tuscola' AND `list_id` = 'race';
10425 #IfRow2D list_options list_id race title Tuscola
10426 UPDATE `list_options` SET `notes` = '1096-7' WHERE `title` = 'Tuscola' AND `list_id` = 'race';
10429 #IfNotRow2Dx2 list_options list_id race option_id twenty-nine_palms title Twenty-Nine Palms
10430 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','twenty-nine_palms','Twenty-Nine Palms','8410', '0',' 1337-5', 0);
10433 #IfRow2D list_options list_id race option_id twenty-nine_palms
10434 UPDATE `list_options` SET `notes` = '1337-5' WHERE `option_id` = 'twenty-nine_palms' AND `list_id` = 'race';
10437 #IfRow2D list_options list_id race title Twenty-Nine Palms
10438 UPDATE `list_options` SET `notes` = '1337-5' WHERE `title` = 'Twenty-Nine Palms' AND `list_id` = 'race';
10441 #IfNotRow2Dx2 list_options list_id race option_id twin_hills title Twin Hills
10442 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','twin_hills','Twin Hills','8420', '0',' 1961-2', 0);
10445 #IfRow2D list_options list_id race option_id twin_hills
10446 UPDATE `list_options` SET `notes` = '1961-2' WHERE `option_id` = 'twin_hills' AND `list_id` = 'race';
10449 #IfRow2D list_options list_id race title Twin Hills
10450 UPDATE `list_options` SET `notes` = '1961-2' WHERE `title` = 'Twin Hills' AND `list_id` = 'race';
10453 #IfNotRow2Dx2 list_options list_id race option_id two_kettle_sioux title Two Kettle Sioux
10454 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','two_kettle_sioux','Two Kettle Sioux','8430', '0',' 1635-2', 0);
10457 #IfRow2D list_options list_id race option_id two_kettle_sioux
10458 UPDATE `list_options` SET `notes` = '1635-2' WHERE `option_id` = 'two_kettle_sioux' AND `list_id` = 'race';
10461 #IfRow2D list_options list_id race title Two Kettle Sioux
10462 UPDATE `list_options` SET `notes` = '1635-2' WHERE `title` = 'Two Kettle Sioux' AND `list_id` = 'race';
10465 #IfNotRow2Dx2 list_options list_id race option_id tygh title Tygh
10466 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tygh','Tygh','8440', '0',' 1663-4', 0);
10469 #IfRow2D list_options list_id race option_id tygh
10470 UPDATE `list_options` SET `notes` = '1663-4' WHERE `option_id` = 'tygh' AND `list_id` = 'race';
10473 #IfRow2D list_options list_id race title Tygh
10474 UPDATE `list_options` SET `notes` = '1663-4' WHERE `title` = 'Tygh' AND `list_id` = 'race';
10477 #IfNotRow2Dx2 list_options list_id race option_id tyonek title Tyonek
10478 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','tyonek','Tyonek','8450', '0',' 1807-7', 0);
10481 #IfRow2D list_options list_id race option_id tyonek
10482 UPDATE `list_options` SET `notes` = '1807-7' WHERE `option_id` = 'tyonek' AND `list_id` = 'race';
10485 #IfRow2D list_options list_id race title Tyonek
10486 UPDATE `list_options` SET `notes` = '1807-7' WHERE `title` = 'Tyonek' AND `list_id` = 'race';
10489 #IfNotRow2Dx2 list_options list_id race option_id ugashik title Ugashik
10490 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ugashik','Ugashik','8460', '0',' 1970-3', 0);
10493 #IfRow2D list_options list_id race option_id ugashik
10494 UPDATE `list_options` SET `notes` = '1970-3' WHERE `option_id` = 'ugashik' AND `list_id` = 'race';
10497 #IfRow2D list_options list_id race title Ugashik
10498 UPDATE `list_options` SET `notes` = '1970-3' WHERE `title` = 'Ugashik' AND `list_id` = 'race';
10501 #IfNotRow2Dx2 list_options list_id race option_id uintah_ute title Uintah Ute
10502 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','uintah_ute','Uintah Ute','8470', '0',' 1672-5', 0);
10505 #IfRow2D list_options list_id race option_id uintah_ute
10506 UPDATE `list_options` SET `notes` = '1672-5' WHERE `option_id` = 'uintah_ute' AND `list_id` = 'race';
10509 #IfRow2D list_options list_id race title Uintah Ute
10510 UPDATE `list_options` SET `notes` = '1672-5' WHERE `title` = 'Uintah Ute' AND `list_id` = 'race';
10513 #IfNotRow2Dx2 list_options list_id race option_id umatilla title Umatilla
10514 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','umatilla','Umatilla','8480', '0',' 1665-9', 0);
10517 #IfRow2D list_options list_id race option_id umatilla
10518 UPDATE `list_options` SET `notes` = '1665-9' WHERE `option_id` = 'umatilla' AND `list_id` = 'race';
10521 #IfRow2D list_options list_id race title Umatilla
10522 UPDATE `list_options` SET `notes` = '1665-9' WHERE `title` = 'Umatilla' AND `list_id` = 'race';
10525 #IfNotRow2Dx2 list_options list_id race option_id umkumiate title Umkumiate
10526 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','umkumiate','Umkumiate','8490', '0',' 1964-6', 0);
10529 #IfRow2D list_options list_id race option_id umkumiate
10530 UPDATE `list_options` SET `notes` = '1964-6' WHERE `option_id` = 'umkumiate' AND `list_id` = 'race';
10533 #IfRow2D list_options list_id race title Umkumiate
10534 UPDATE `list_options` SET `notes` = '1964-6' WHERE `title` = 'Umkumiate' AND `list_id` = 'race';
10537 #IfNotRow2Dx2 list_options list_id race option_id umpqua title Umpqua
10538 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','umpqua','Umpqua','8500', '0',' 1667-5', 0);
10541 #IfRow2D list_options list_id race option_id umpqua
10542 UPDATE `list_options` SET `notes` = '1667-5' WHERE `option_id` = 'umpqua' AND `list_id` = 'race';
10545 #IfRow2D list_options list_id race title Umpqua
10546 UPDATE `list_options` SET `notes` = '1667-5' WHERE `title` = 'Umpqua' AND `list_id` = 'race';
10549 #IfNotRow2Dx2 list_options list_id race option_id unalakleet title Unalakleet
10550 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','unalakleet','Unalakleet','8510', '0',' 1884-6', 0);
10553 #IfRow2D list_options list_id race option_id unalakleet
10554 UPDATE `list_options` SET `notes` = '1884-6' WHERE `option_id` = 'unalakleet' AND `list_id` = 'race';
10557 #IfRow2D list_options list_id race title Unalakleet
10558 UPDATE `list_options` SET `notes` = '1884-6' WHERE `title` = 'Unalakleet' AND `list_id` = 'race';
10561 #IfNotRow2Dx2 list_options list_id race option_id unalaska title Unalaska
10562 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','unalaska','Unalaska','8520', '0',' 2025-5', 0);
10565 #IfRow2D list_options list_id race option_id unalaska
10566 UPDATE `list_options` SET `notes` = '2025-5' WHERE `option_id` = 'unalaska' AND `list_id` = 'race';
10569 #IfRow2D list_options list_id race title Unalaska
10570 UPDATE `list_options` SET `notes` = '2025-5' WHERE `title` = 'Unalaska' AND `list_id` = 'race';
10573 #IfNotRow2Dx2 list_options list_id race option_id unangan_aleut title Unangan Aleut
10574 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','unangan_aleut','Unangan Aleut','8530', '0',' 2006-5', 0);
10577 #IfRow2D list_options list_id race option_id unangan_aleut
10578 UPDATE `list_options` SET `notes` = '2006-5' WHERE `option_id` = 'unangan_aleut' AND `list_id` = 'race';
10581 #IfRow2D list_options list_id race title Unangan Aleut
10582 UPDATE `list_options` SET `notes` = '2006-5' WHERE `title` = 'Unangan Aleut' AND `list_id` = 'race';
10585 #IfNotRow2Dx2 list_options list_id race option_id unga title Unga
10586 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','unga','Unga','8540', '0',' 2026-3', 0);
10589 #IfRow2D list_options list_id race option_id unga
10590 UPDATE `list_options` SET `notes` = '2026-3' WHERE `option_id` = 'unga' AND `list_id` = 'race';
10593 #IfRow2D list_options list_id race title Unga
10594 UPDATE `list_options` SET `notes` = '2026-3' WHERE `title` = 'Unga' AND `list_id` = 'race';
10597 #IfNotRow2Dx2 list_options list_id race option_id united_ketowah_band_of_cheroke title United Keetowah Band of Cherokee
10598 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','united_ketowah_band_of_cheroke','United Keetowah Band of Cherokee','8550', '0',' 1097-5', 0);
10601 #IfRow2D list_options list_id race option_id united_ketowah_band_of_cheroke
10602 UPDATE `list_options` SET `notes` = '1097-5' WHERE `option_id` = 'united_ketowah_band_of_cheroke' AND `list_id` = 'race';
10605 #IfRow2D list_options list_id race title United Keetowah Band of Cherokee
10606 UPDATE `list_options` SET `notes` = '1097-5' WHERE `title` = 'United Keetowah Band of Cherokee' AND `list_id` = 'race';
10609 #IfNotRow2Dx2 list_options list_id race option_id upper_chinook title Upper Chinook
10610 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','upper_chinook','Upper Chinook','8560', '0',' 1118-9', 0);
10613 #IfRow2D list_options list_id race option_id upper_chinook
10614 UPDATE `list_options` SET `notes` = '1118-9' WHERE `option_id` = 'upper_chinook' AND `list_id` = 'race';
10617 #IfRow2D list_options list_id race title Upper Chinook
10618 UPDATE `list_options` SET `notes` = '1118-9' WHERE `title` = 'Upper Chinook' AND `list_id` = 'race';
10621 #IfNotRow2Dx2 list_options list_id race option_id upper_sioux title Upper Sioux
10622 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','upper_sioux','Upper Sioux','8570', '0',' 1636-0', 0);
10625 #IfRow2D list_options list_id race option_id upper_sioux
10626 UPDATE `list_options` SET `notes` = '1636-0' WHERE `option_id` = 'upper_sioux' AND `list_id` = 'race';
10629 #IfRow2D list_options list_id race title Upper Sioux
10630 UPDATE `list_options` SET `notes` = '1636-0' WHERE `title` = 'Upper Sioux' AND `list_id` = 'race';
10633 #IfNotRow2Dx2 list_options list_id race option_id upper_skagit title Upper Skagit
10634 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','upper_skagit','Upper Skagit','8580', '0',' 1539-6', 0);
10637 #IfRow2D list_options list_id race option_id upper_skagit
10638 UPDATE `list_options` SET `notes` = '1539-6' WHERE `option_id` = 'upper_skagit' AND `list_id` = 'race';
10641 #IfRow2D list_options list_id race title Upper Skagit
10642 UPDATE `list_options` SET `notes` = '1539-6' WHERE `title` = 'Upper Skagit' AND `list_id` = 'race';
10645 #IfNotRow2Dx2 list_options list_id race option_id ute title Ute
10646 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ute','Ute','8590', '0',' 1670-9', 0);
10649 #IfRow2D list_options list_id race option_id ute
10650 UPDATE `list_options` SET `notes` = '1670-9' WHERE `option_id` = 'ute' AND `list_id` = 'race';
10653 #IfRow2D list_options list_id race title Ute
10654 UPDATE `list_options` SET `notes` = '1670-9' WHERE `title` = 'Ute' AND `list_id` = 'race';
10657 #IfNotRow2Dx2 list_options list_id race option_id ute_mountain_ute title Ute Mountain Ute
10658 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','ute_mountain_ute','Ute Mountain Ute','8600', '0',' 1673-3', 0);
10661 #IfRow2D list_options list_id race option_id ute_mountain_ute
10662 UPDATE `list_options` SET `notes` = '1673-3' WHERE `option_id` = 'ute_mountain_ute' AND `list_id` = 'race';
10665 #IfRow2D list_options list_id race title Ute Mountain Ute
10666 UPDATE `list_options` SET `notes` = '1673-3' WHERE `title` = 'Ute Mountain Ute' AND `list_id` = 'race';
10669 #IfNotRow2Dx2 list_options list_id race option_id utu_utu_gwaitu_paiute title Utu Utu Gwaitu Paiute
10670 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','utu_utu_gwaitu_paiute','Utu Utu Gwaitu Paiute','8610', '0',' 1435-7', 0);
10673 #IfRow2D list_options list_id race option_id utu_utu_gwaitu_paiute
10674 UPDATE `list_options` SET `notes` = '1435-7' WHERE `option_id` = 'utu_utu_gwaitu_paiute' AND `list_id` = 'race';
10677 #IfRow2D list_options list_id race title Utu Utu Gwaitu Paiute
10678 UPDATE `list_options` SET `notes` = '1435-7' WHERE `title` = 'Utu Utu Gwaitu Paiute' AND `list_id` = 'race';
10681 #IfNotRow2Dx2 list_options list_id race option_id venetie title Venetie
10682 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','venetie','Venetie','8620', '0',' 1808-5', 0);
10685 #IfRow2D list_options list_id race option_id venetie
10686 UPDATE `list_options` SET `notes` = '1808-5' WHERE `option_id` = 'venetie' AND `list_id` = 'race';
10689 #IfRow2D list_options list_id race title Venetie
10690 UPDATE `list_options` SET `notes` = '1808-5' WHERE `title` = 'Venetie' AND `list_id` = 'race';
10693 #IfNotRow2Dx2 list_options list_id race option_id vietnamese title Vietnamese
10694 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','vietnamese','Vietnamese','8630', '0',' 2047-9', 0);
10697 #IfRow2D list_options list_id race option_id vietnamese
10698 UPDATE `list_options` SET `notes` = '2047-9' WHERE `option_id` = 'vietnamese' AND `list_id` = 'race';
10701 #IfRow2D list_options list_id race title Vietnamese
10702 UPDATE `list_options` SET `notes` = '2047-9' WHERE `title` = 'Vietnamese' AND `list_id` = 'race';
10705 #IfNotRow2Dx2 list_options list_id race option_id waccamaw-siousan title Waccamaw-Siousan
10706 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','waccamaw-siousan','Waccamaw-Siousan','8640', '0',' 1247-6', 0);
10709 #IfRow2D list_options list_id race option_id waccamaw-siousan
10710 UPDATE `list_options` SET `notes` = '1247-6' WHERE `option_id` = 'waccamaw-siousan' AND `list_id` = 'race';
10713 #IfRow2D list_options list_id race title Waccamaw-Siousan
10714 UPDATE `list_options` SET `notes` = '1247-6' WHERE `title` = 'Waccamaw-Siousan' AND `list_id` = 'race';
10717 #IfNotRow2Dx2 list_options list_id race option_id wahpekute_sioux title Wahpekute Sioux
10718 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wahpekute_sioux','Wahpekute Sioux','8650', '0',' 1637-8', 0);
10721 #IfRow2D list_options list_id race option_id wahpekute_sioux
10722 UPDATE `list_options` SET `notes` = '1637-8' WHERE `option_id` = 'wahpekute_sioux' AND `list_id` = 'race';
10725 #IfRow2D list_options list_id race title Wahpekute Sioux
10726 UPDATE `list_options` SET `notes` = '1637-8' WHERE `title` = 'Wahpekute Sioux' AND `list_id` = 'race';
10729 #IfNotRow2Dx2 list_options list_id race option_id wahpeton_sioux title Wahpeton Sioux
10730 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wahpeton_sioux','Wahpeton Sioux','8660', '0',' 1638-6', 0);
10733 #IfRow2D list_options list_id race option_id wahpeton_sioux
10734 UPDATE `list_options` SET `notes` = '1638-6' WHERE `option_id` = 'wahpeton_sioux' AND `list_id` = 'race';
10737 #IfRow2D list_options list_id race title Wahpeton Sioux
10738 UPDATE `list_options` SET `notes` = '1638-6' WHERE `title` = 'Wahpeton Sioux' AND `list_id` = 'race';
10741 #IfNotRow2Dx2 list_options list_id race option_id wailaki title Wailaki
10742 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wailaki','Wailaki','8670', '0',' 1675-8', 0);
10745 #IfRow2D list_options list_id race option_id wailaki
10746 UPDATE `list_options` SET `notes` = '1675-8' WHERE `option_id` = 'wailaki' AND `list_id` = 'race';
10749 #IfRow2D list_options list_id race title Wailaki
10750 UPDATE `list_options` SET `notes` = '1675-8' WHERE `title` = 'Wailaki' AND `list_id` = 'race';
10753 #IfNotRow2Dx2 list_options list_id race option_id wainwright title Wainwright
10754 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wainwright','Wainwright','8680', '0',' 1885-3', 0);
10757 #IfRow2D list_options list_id race option_id wainwright
10758 UPDATE `list_options` SET `notes` = '1885-3' WHERE `option_id` = 'wainwright' AND `list_id` = 'race';
10761 #IfRow2D list_options list_id race title Wainwright
10762 UPDATE `list_options` SET `notes` = '1885-3' WHERE `title` = 'Wainwright' AND `list_id` = 'race';
10765 #IfNotRow2Dx2 list_options list_id race option_id wakiakum_chinook title Wakiakum Chinook
10766 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wakiakum_chinook','Wakiakum Chinook','8690', '0',' 1119-7', 0);
10769 #IfRow2D list_options list_id race option_id wakiakum_chinook
10770 UPDATE `list_options` SET `notes` = '1119-7' WHERE `option_id` = 'wakiakum_chinook' AND `list_id` = 'race';
10773 #IfRow2D list_options list_id race title Wakiakum Chinook
10774 UPDATE `list_options` SET `notes` = '1119-7' WHERE `title` = 'Wakiakum Chinook' AND `list_id` = 'race';
10777 #IfNotRow2Dx2 list_options list_id race option_id wales title Wales
10778 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wales','Wales','8700', '0',' 1886-1', 0);
10781 #IfRow2D list_options list_id race option_id wales
10782 UPDATE `list_options` SET `notes` = '1886-1' WHERE `option_id` = 'wales' AND `list_id` = 'race';
10785 #IfRow2D list_options list_id race title Wales
10786 UPDATE `list_options` SET `notes` = '1886-1' WHERE `title` = 'Wales' AND `list_id` = 'race';
10789 #IfNotRow2Dx2 list_options list_id race option_id walker_river title Walker River
10790 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','walker_river','Walker River','8710', '0',' 1436-5', 0);
10793 #IfRow2D list_options list_id race option_id walker_river
10794 UPDATE `list_options` SET `notes` = '1436-5' WHERE `option_id` = 'walker_river' AND `list_id` = 'race';
10797 #IfRow2D list_options list_id race title Walker River
10798 UPDATE `list_options` SET `notes` = '1436-5' WHERE `title` = 'Walker River' AND `list_id` = 'race';
10801 #IfNotRow2Dx2 list_options list_id race option_id walla-walla title Walla-Walla
10802 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','walla-walla','Walla-Walla','8720', '0',' 1677-4', 0);
10805 #IfRow2D list_options list_id race option_id walla-walla
10806 UPDATE `list_options` SET `notes` = '1677-4' WHERE `option_id` = 'walla-walla' AND `list_id` = 'race';
10809 #IfRow2D list_options list_id race title Walla-Walla
10810 UPDATE `list_options` SET `notes` = '1677-4' WHERE `title` = 'Walla-Walla' AND `list_id` = 'race';
10813 #IfNotRow2Dx2 list_options list_id race option_id wampanoag title Wampanoag
10814 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wampanoag','Wampanoag','8730', '0',' 1679-0', 0);
10817 #IfRow2D list_options list_id race option_id wampanoag
10818 UPDATE `list_options` SET `notes` = '1679-0' WHERE `option_id` = 'wampanoag' AND `list_id` = 'race';
10821 #IfRow2D list_options list_id race title Wampanoag
10822 UPDATE `list_options` SET `notes` = '1679-0' WHERE `title` = 'Wampanoag' AND `list_id` = 'race';
10825 #IfNotRow2Dx2 list_options list_id race option_id wappo title Wappo
10826 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wappo','Wappo','8740', '0',' 1064-5', 0);
10829 #IfRow2D list_options list_id race option_id wappo
10830 UPDATE `list_options` SET `notes` = '1064-5' WHERE `option_id` = 'wappo' AND `list_id` = 'race';
10833 #IfRow2D list_options list_id race title Wappo
10834 UPDATE `list_options` SET `notes` = '1064-5' WHERE `title` = 'Wappo' AND `list_id` = 'race';
10837 #IfNotRow2Dx2 list_options list_id race option_id warm_springs title Warm Springs
10838 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','warm_springs','Warm Springs','8750', '0',' 1683-2', 0);
10841 #IfRow2D list_options list_id race option_id warm_springs
10842 UPDATE `list_options` SET `notes` = '1683-2' WHERE `option_id` = 'warm_springs' AND `list_id` = 'race';
10845 #IfRow2D list_options list_id race title Warm Springs
10846 UPDATE `list_options` SET `notes` = '1683-2' WHERE `title` = 'Warm Springs' AND `list_id` = 'race';
10849 #IfNotRow2Dx2 list_options list_id race option_id wascopum title Wascopum
10850 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wascopum','Wascopum','8760', '0',' 1685-7', 0);
10853 #IfRow2D list_options list_id race option_id wascopum
10854 UPDATE `list_options` SET `notes` = '1685-7' WHERE `option_id` = 'wascopum' AND `list_id` = 'race';
10857 #IfRow2D list_options list_id race title Wascopum
10858 UPDATE `list_options` SET `notes` = '1685-7' WHERE `title` = 'Wascopum' AND `list_id` = 'race';
10861 #IfNotRow2Dx2 list_options list_id race option_id washakie title Washakie
10862 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','washakie','Washakie','8770', '0',' 1598-2', 0);
10865 #IfRow2D list_options list_id race option_id washakie
10866 UPDATE `list_options` SET `notes` = '1598-2' WHERE `option_id` = 'washakie' AND `list_id` = 'race';
10869 #IfRow2D list_options list_id race title Washakie
10870 UPDATE `list_options` SET `notes` = '1598-2' WHERE `title` = 'Washakie' AND `list_id` = 'race';
10873 #IfNotRow2Dx2 list_options list_id race option_id washoe title Washoe
10874 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','washoe','Washoe','8780', '0',' 1687-3', 0);
10877 #IfRow2D list_options list_id race option_id washoe
10878 UPDATE `list_options` SET `notes` = '1687-3' WHERE `option_id` = 'washoe' AND `list_id` = 'race';
10881 #IfRow2D list_options list_id race title Washoe
10882 UPDATE `list_options` SET `notes` = '1687-3' WHERE `title` = 'Washoe' AND `list_id` = 'race';
10885 #IfNotRow2Dx2 list_options list_id race option_id wazhaza_sioux title Wazhaza Sioux
10886 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wazhaza_sioux','Wazhaza Sioux','8790', '0',' 1639-4', 0);
10889 #IfRow2D list_options list_id race option_id wazhaza_sioux
10890 UPDATE `list_options` SET `notes` = '1639-4' WHERE `option_id` = 'wazhaza_sioux' AND `list_id` = 'race';
10893 #IfRow2D list_options list_id race title Wazhaza Sioux
10894 UPDATE `list_options` SET `notes` = '1639-4' WHERE `title` = 'Wazhaza Sioux' AND `list_id` = 'race';
10897 #IfNotRow2Dx2 list_options list_id race option_id wenatchee title Wenatchee
10898 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wenatchee','Wenatchee','8800', '0',' 1400-1', 0);
10901 #IfRow2D list_options list_id race option_id wenatchee
10902 UPDATE `list_options` SET `notes` = '1400-1' WHERE `option_id` = 'wenatchee' AND `list_id` = 'race';
10905 #IfRow2D list_options list_id race title Wenatchee
10906 UPDATE `list_options` SET `notes` = '1400-1' WHERE `title` = 'Wenatchee' AND `list_id` = 'race';
10909 #IfNotRow2Dx2 list_options list_id race option_id west_indian title West Indian
10910 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','west_indian','West Indian','8810', '0',' 2075-0', 0);
10913 #IfRow2D list_options list_id race option_id west_indian
10914 UPDATE `list_options` SET `notes` = '2075-0' WHERE `option_id` = 'west_indian' AND `list_id` = 'race';
10917 #IfRow2D list_options list_id race title West Indian
10918 UPDATE `list_options` SET `notes` = '2075-0' WHERE `title` = 'West Indian' AND `list_id` = 'race';
10921 #IfNotRow2Dx2 list_options list_id race option_id western_cherokee title Western Cherokee
10922 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','western_cherokee','Western Cherokee','8820', '0',' 1098-3', 0);
10925 #IfRow2D list_options list_id race option_id western_cherokee
10926 UPDATE `list_options` SET `notes` = '1098-3' WHERE `option_id` = 'western_cherokee' AND `list_id` = 'race';
10929 #IfRow2D list_options list_id race title Western Cherokee
10930 UPDATE `list_options` SET `notes` = '1098-3' WHERE `title` = 'Western Cherokee' AND `list_id` = 'race';
10933 #IfNotRow2Dx2 list_options list_id race option_id western_chickahominy title Western Chickahominy
10934 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','western_chickahominy','Western Chickahominy','8830', '0',' 1110-6', 0);
10937 #IfRow2D list_options list_id race option_id western_chickahominy
10938 UPDATE `list_options` SET `notes` = '1110-6' WHERE `option_id` = 'western_chickahominy' AND `list_id` = 'race';
10941 #IfRow2D list_options list_id race title Western Chickahominy
10942 UPDATE `list_options` SET `notes` = '1110-6' WHERE `title` = 'Western Chickahominy' AND `list_id` = 'race';
10945 #IfNotRow2Dx2 list_options list_id race option_id whilkut title Whilkut
10946 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','whilkut','Whilkut','8840', '0',' 1273-2', 0);
10949 #IfRow2D list_options list_id race option_id whilkut
10950 UPDATE `list_options` SET `notes` = '1273-2' WHERE `option_id` = 'whilkut' AND `list_id` = 'race';
10953 #IfRow2D list_options list_id race title Whilkut
10954 UPDATE `list_options` SET `notes` = '1273-2' WHERE `title` = 'Whilkut' AND `list_id` = 'race';
10957 #IfNotRow2Dx2 list_options list_id race option_id white_earth title White Earth
10958 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','white_earth','White Earth','8860', '0',' 1148-6', 0);
10961 #IfRow2D list_options list_id race option_id white_earth
10962 UPDATE `list_options` SET `notes` = '1148-6' WHERE `option_id` = 'white_earth' AND `list_id` = 'race';
10965 #IfRow2D list_options list_id race title White Earth
10966 UPDATE `list_options` SET `notes` = '1148-6' WHERE `title` = 'White Earth' AND `list_id` = 'race';
10969 #IfNotRow2Dx2 list_options list_id race option_id white_mountain title White Mountain
10970 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','white_mountain','White Mountain','8870', '0',' 1887-9', 0);
10973 #IfRow2D list_options list_id race option_id white_mountain
10974 UPDATE `list_options` SET `notes` = '1887-9' WHERE `option_id` = 'white_mountain' AND `list_id` = 'race';
10977 #IfRow2D list_options list_id race title White Mountain
10978 UPDATE `list_options` SET `notes` = '1887-9' WHERE `title` = 'White Mountain' AND `list_id` = 'race';
10981 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_apache title White Mountain Apache
10982 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','white_mountain_apache','White Mountain Apache','8880', '0',' 1019-9', 0);
10985 #IfRow2D list_options list_id race option_id white_mountain_apache
10986 UPDATE `list_options` SET `notes` = '1019-9' WHERE `option_id` = 'white_mountain_apache' AND `list_id` = 'race';
10989 #IfRow2D list_options list_id race title White Mountain Apache
10990 UPDATE `list_options` SET `notes` = '1019-9' WHERE `title` = 'White Mountain Apache' AND `list_id` = 'race';
10993 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_inupiat title White Mountain Inupiat
10994 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','white_mountain_inupiat','White Mountain Inupiat','8890', '0',' 1888-7', 0);
10997 #IfRow2D list_options list_id race option_id white_mountain_inupiat
10998 UPDATE `list_options` SET `notes` = '1888-7' WHERE `option_id` = 'white_mountain_inupiat' AND `list_id` = 'race';
11001 #IfRow2D list_options list_id race title White Mountain Inupiat
11002 UPDATE `list_options` SET `notes` = '1888-7' WHERE `title` = 'White Mountain Inupiat' AND `list_id` = 'race';
11005 #IfNotRow2Dx2 list_options list_id race option_id wichita title Wichita
11006 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wichita','Wichita','8900', '0',' 1692-3', 0);
11009 #IfRow2D list_options list_id race option_id wichita
11010 UPDATE `list_options` SET `notes` = '1692-3' WHERE `option_id` = 'wichita' AND `list_id` = 'race';
11013 #IfRow2D list_options list_id race title Wichita
11014 UPDATE `list_options` SET `notes` = '1692-3' WHERE `title` = 'Wichita' AND `list_id` = 'race';
11017 #IfNotRow2Dx2 list_options list_id race option_id wicomico title Wicomico
11018 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wicomico','Wicomico','8910', '0',' 1248-4', 0);
11021 #IfRow2D list_options list_id race option_id wicomico
11022 UPDATE `list_options` SET `notes` = '1248-4' WHERE `option_id` = 'wicomico' AND `list_id` = 'race';
11025 #IfRow2D list_options list_id race title Wicomico
11026 UPDATE `list_options` SET `notes` = '1248-4' WHERE `title` = 'Wicomico' AND `list_id` = 'race';
11029 #IfNotRow2Dx2 list_options list_id race option_id willapa_chinook title Willapa Chinook
11030 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','willapa_chinook','Willapa Chinook','8920', '0',' 1120-5', 0);
11033 #IfRow2D list_options list_id race option_id willapa_chinook
11034 UPDATE `list_options` SET `notes` = '1120-5' WHERE `option_id` = 'willapa_chinook' AND `list_id` = 'race';
11037 #IfRow2D list_options list_id race title Willapa Chinook
11038 UPDATE `list_options` SET `notes` = '1120-5' WHERE `title` = 'Willapa Chinook' AND `list_id` = 'race';
11041 #IfNotRow2Dx2 list_options list_id race option_id wind_river title Wind River
11042 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wind_river','Wind River','8930', '0',' 1694-9', 0);
11045 #IfRow2D list_options list_id race option_id wind_river
11046 UPDATE `list_options` SET `notes` = '1694-9' WHERE `option_id` = 'wind_river' AND `list_id` = 'race';
11049 #IfRow2D list_options list_id race title Wind River
11050 UPDATE `list_options` SET `notes` = '1694-9' WHERE `title` = 'Wind River' AND `list_id` = 'race';
11053 #IfNotRow2Dx2 list_options list_id race option_id wind_river_arapaho title Wind River Arapaho
11054 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wind_river_arapaho','Wind River Arapaho','8940', '0',' 1024-9', 0);
11057 #IfRow2D list_options list_id race option_id wind_river_arapaho
11058 UPDATE `list_options` SET `notes` = '1024-9' WHERE `option_id` = 'wind_river_arapaho' AND `list_id` = 'race';
11061 #IfRow2D list_options list_id race title Wind River Arapaho
11062 UPDATE `list_options` SET `notes` = '1024-9' WHERE `title` = 'Wind River Arapaho' AND `list_id` = 'race';
11065 #IfNotRow2Dx2 list_options list_id race option_id wind_river_shoshone title Wind River Shoshone
11066 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wind_river_shoshone','Wind River Shoshone','8950', '0',' 1599-0', 0);
11069 #IfRow2D list_options list_id race option_id wind_river_shoshone
11070 UPDATE `list_options` SET `notes` = '1599-0' WHERE `option_id` = 'wind_river_shoshone' AND `list_id` = 'race';
11073 #IfRow2D list_options list_id race title Wind River Shoshone
11074 UPDATE `list_options` SET `notes` = '1599-0' WHERE `title` = 'Wind River Shoshone' AND `list_id` = 'race';
11077 #IfNotRow2Dx2 list_options list_id race option_id winnebago title Winnebago
11078 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','winnebago','Winnebago','8960', '0',' 1696-4', 0);
11081 #IfRow2D list_options list_id race option_id winnebago
11082 UPDATE `list_options` SET `notes` = '1696-4' WHERE `option_id` = 'winnebago' AND `list_id` = 'race';
11085 #IfRow2D list_options list_id race title Winnebago
11086 UPDATE `list_options` SET `notes` = '1696-4' WHERE `title` = 'Winnebago' AND `list_id` = 'race';
11089 #IfNotRow2Dx2 list_options list_id race option_id winnemucca title Winnemucca
11090 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','winnemucca','Winnemucca','8970', '0',' 1700-4', 0);
11093 #IfRow2D list_options list_id race option_id winnemucca
11094 UPDATE `list_options` SET `notes` = '1700-4' WHERE `option_id` = 'winnemucca' AND `list_id` = 'race';
11097 #IfRow2D list_options list_id race title Winnemucca
11098 UPDATE `list_options` SET `notes` = '1700-4' WHERE `title` = 'Winnemucca' AND `list_id` = 'race';
11101 #IfNotRow2Dx2 list_options list_id race option_id wintun title Wintun
11102 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wintun','Wintun','8980', '0',' 1702-0', 0);
11105 #IfRow2D list_options list_id race option_id wintun
11106 UPDATE `list_options` SET `notes` = '1702-0' WHERE `option_id` = 'wintun' AND `list_id` = 'race';
11109 #IfRow2D list_options list_id race title Wintun
11110 UPDATE `list_options` SET `notes` = '1702-0' WHERE `title` = 'Wintun' AND `list_id` = 'race';
11113 #IfNotRow2Dx2 list_options list_id race option_id wisconsin_potawatomi title Wisconsin Potawatomi
11114 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wisconsin_potawatomi','Wisconsin Potawatomi','8990', '0',' 1485-2', 0);
11117 #IfRow2D list_options list_id race option_id wisconsin_potawatomi
11118 UPDATE `list_options` SET `notes` = '1485-2' WHERE `option_id` = 'wisconsin_potawatomi' AND `list_id` = 'race';
11121 #IfRow2D list_options list_id race title Wisconsin Potawatomi
11122 UPDATE `list_options` SET `notes` = '1485-2' WHERE `title` = 'Wisconsin Potawatomi' AND `list_id` = 'race';
11125 #IfNotRow2Dx2 list_options list_id race option_id wiseman title Wiseman
11126 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wiseman','Wiseman','9000', '0',' 1809-3', 0);
11129 #IfRow2D list_options list_id race option_id wiseman
11130 UPDATE `list_options` SET `notes` = '1809-3' WHERE `option_id` = 'wiseman' AND `list_id` = 'race';
11133 #IfRow2D list_options list_id race title Wiseman
11134 UPDATE `list_options` SET `notes` = '1809-3' WHERE `title` = 'Wiseman' AND `list_id` = 'race';
11137 #IfNotRow2Dx2 list_options list_id race option_id wishram title Wishram
11138 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wishram','Wishram','9010', '0',' 1121-3', 0);
11141 #IfRow2D list_options list_id race option_id wishram
11142 UPDATE `list_options` SET `notes` = '1121-3' WHERE `option_id` = 'wishram' AND `list_id` = 'race';
11145 #IfRow2D list_options list_id race title Wishram
11146 UPDATE `list_options` SET `notes` = '1121-3' WHERE `title` = 'Wishram' AND `list_id` = 'race';
11149 #IfNotRow2Dx2 list_options list_id race option_id wiyot title Wiyot
11150 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wiyot','Wiyot','9020', '0',' 1704-6', 0);
11153 #IfRow2D list_options list_id race option_id wiyot
11154 UPDATE `list_options` SET `notes` = '1704-6' WHERE `option_id` = 'wiyot' AND `list_id` = 'race';
11157 #IfRow2D list_options list_id race title Wiyot
11158 UPDATE `list_options` SET `notes` = '1704-6' WHERE `title` = 'Wiyot' AND `list_id` = 'race';
11161 #IfNotRow2Dx2 list_options list_id race option_id wrangell title Wrangell
11162 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wrangell','Wrangell','9030', '0',' 1834-1', 0);
11165 #IfRow2D list_options list_id race option_id wrangell
11166 UPDATE `list_options` SET `notes` = '1834-1' WHERE `option_id` = 'wrangell' AND `list_id` = 'race';
11169 #IfRow2D list_options list_id race title Wrangell
11170 UPDATE `list_options` SET `notes` = '1834-1' WHERE `title` = 'Wrangell' AND `list_id` = 'race';
11173 #IfNotRow2Dx2 list_options list_id race option_id wyandotte title Wyandotte
11174 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','wyandotte','Wyandotte','9040', '0',' 1295-5', 0);
11177 #IfRow2D list_options list_id race option_id wyandotte
11178 UPDATE `list_options` SET `notes` = '1295-5' WHERE `option_id` = 'wyandotte' AND `list_id` = 'race';
11181 #IfRow2D list_options list_id race title Wyandotte
11182 UPDATE `list_options` SET `notes` = '1295-5' WHERE `title` = 'Wyandotte' AND `list_id` = 'race';
11185 #IfNotRow2Dx2 list_options list_id race option_id yahooskin title Yahooskin
11186 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yahooskin','Yahooskin','9050', '0',' 1401-9', 0);
11189 #IfRow2D list_options list_id race option_id yahooskin
11190 UPDATE `list_options` SET `notes` = '1401-9' WHERE `option_id` = 'yahooskin' AND `list_id` = 'race';
11193 #IfRow2D list_options list_id race title Yahooskin
11194 UPDATE `list_options` SET `notes` = '1401-9' WHERE `title` = 'Yahooskin' AND `list_id` = 'race';
11197 #IfNotRow2Dx2 list_options list_id race option_id yakama title Yakama
11198 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yakama','Yakama','9060', '0',' 1707-9', 0);
11201 #IfRow2D list_options list_id race option_id yakama
11202 UPDATE `list_options` SET `notes` = '1707-9' WHERE `option_id` = 'yakama' AND `list_id` = 'race';
11205 #IfRow2D list_options list_id race title Yakama
11206 UPDATE `list_options` SET `notes` = '1707-9' WHERE `title` = 'Yakama' AND `list_id` = 'race';
11209 #IfNotRow2Dx2 list_options list_id race option_id yakama_cowlitz title Yakama Cowlitz
11210 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yakama_cowlitz','Yakama Cowlitz','9070', '0',' 1709-5', 0);
11213 #IfRow2D list_options list_id race option_id yakama_cowlitz
11214 UPDATE `list_options` SET `notes` = '1709-5' WHERE `option_id` = 'yakama_cowlitz' AND `list_id` = 'race';
11217 #IfRow2D list_options list_id race title Yakama Cowlitz
11218 UPDATE `list_options` SET `notes` = '1709-5' WHERE `title` = 'Yakama Cowlitz' AND `list_id` = 'race';
11221 #IfNotRow2Dx2 list_options list_id race option_id yakutat title Yakutat
11222 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yakutat','Yakutat','9080', '0',' 1835-8', 0);
11225 #IfRow2D list_options list_id race option_id yakutat
11226 UPDATE `list_options` SET `notes` = '1835-8' WHERE `option_id` = 'yakutat' AND `list_id` = 'race';
11229 #IfRow2D list_options list_id race title Yakutat
11230 UPDATE `list_options` SET `notes` = '1835-8' WHERE `title` = 'Yakutat' AND `list_id` = 'race';
11233 #IfNotRow2Dx2 list_options list_id race option_id yana title Yana
11234 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yana','Yana','9090', '0',' 1065-2', 0);
11237 #IfRow2D list_options list_id race option_id yana
11238 UPDATE `list_options` SET `notes` = '1065-2' WHERE `option_id` = 'yana' AND `list_id` = 'race';
11241 #IfRow2D list_options list_id race title Yana
11242 UPDATE `list_options` SET `notes` = '1065-2' WHERE `title` = 'Yana' AND `list_id` = 'race';
11245 #IfNotRow2Dx2 list_options list_id race option_id yankton_sioux title Yankton Sioux
11246 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yankton_sioux','Yankton Sioux','9100', '0',' 1640-2', 0);
11249 #IfRow2D list_options list_id race option_id yankton_sioux
11250 UPDATE `list_options` SET `notes` = '1640-2' WHERE `option_id` = 'yankton_sioux' AND `list_id` = 'race';
11253 #IfRow2D list_options list_id race title Yankton Sioux
11254 UPDATE `list_options` SET `notes` = '1640-2' WHERE `title` = 'Yankton Sioux' AND `list_id` = 'race';
11257 #IfNotRow2Dx2 list_options list_id race option_id yanktonai_sioux title Yanktonai Sioux
11258 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yanktonai_sioux','Yanktonai Sioux','9110', '0',' 1641-0', 0);
11261 #IfRow2D list_options list_id race option_id yanktonai_sioux
11262 UPDATE `list_options` SET `notes` = '1641-0' WHERE `option_id` = 'yanktonai_sioux' AND `list_id` = 'race';
11265 #IfRow2D list_options list_id race title Yanktonai Sioux
11266 UPDATE `list_options` SET `notes` = '1641-0' WHERE `title` = 'Yanktonai Sioux' AND `list_id` = 'race';
11269 #IfNotRow2Dx2 list_options list_id race option_id yapese title Yapese
11270 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yapese','Yapese','9120', '0',' 2098-2', 0);
11273 #IfRow2D list_options list_id race option_id yapese
11274 UPDATE `list_options` SET `notes` = '2098-2' WHERE `option_id` = 'yapese' AND `list_id` = 'race';
11277 #IfRow2D list_options list_id race title Yapese
11278 UPDATE `list_options` SET `notes` = '2098-2' WHERE `title` = 'Yapese' AND `list_id` = 'race';
11281 #IfNotRow2Dx2 list_options list_id race option_id yaqui title Yaqui
11282 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yaqui','Yaqui','9130', '0',' 1711-1', 0);
11285 #IfRow2D list_options list_id race option_id yaqui
11286 UPDATE `list_options` SET `notes` = '1711-1' WHERE `option_id` = 'yaqui' AND `list_id` = 'race';
11289 #IfRow2D list_options list_id race title Yaqui
11290 UPDATE `list_options` SET `notes` = '1711-1' WHERE `title` = 'Yaqui' AND `list_id` = 'race';
11293 #IfNotRow2Dx2 list_options list_id race option_id yavapai title Yavapai
11294 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yavapai','Yavapai','9140', '0',' 1731-9', 0);
11297 #IfRow2D list_options list_id race option_id yavapai
11298 UPDATE `list_options` SET `notes` = '1731-9' WHERE `option_id` = 'yavapai' AND `list_id` = 'race';
11301 #IfRow2D list_options list_id race title Yavapai
11302 UPDATE `list_options` SET `notes` = '1731-9' WHERE `title` = 'Yavapai' AND `list_id` = 'race';
11305 #IfNotRow2Dx2 list_options list_id race option_id yavapai_apache title Yavapai Apache
11306 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yavapai_apache','Yavapai Apache','9150', '0',' 1715-2', 0);
11309 #IfRow2D list_options list_id race option_id yavapai_apache
11310 UPDATE `list_options` SET `notes` = '1715-2' WHERE `option_id` = 'yavapai_apache' AND `list_id` = 'race';
11313 #IfRow2D list_options list_id race title Yavapai Apache
11314 UPDATE `list_options` SET `notes` = '1715-2' WHERE `title` = 'Yavapai Apache' AND `list_id` = 'race';
11317 #IfNotRow2Dx2 list_options list_id race option_id yerington_paiute title Yerington Paiute
11318 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yerington_paiute','Yerington Paiute','9160', '0',' 1437-3', 0);
11321 #IfRow2D list_options list_id race option_id yerington_paiute
11322 UPDATE `list_options` SET `notes` = '1437-3' WHERE `option_id` = 'yerington_paiute' AND `list_id` = 'race';
11325 #IfRow2D list_options list_id race title Yerington Paiute
11326 UPDATE `list_options` SET `notes` = '1437-3' WHERE `title` = 'Yerington Paiute' AND `list_id` = 'race';
11329 #IfNotRow2Dx2 list_options list_id race option_id yokuts title Yokuts
11330 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yokuts','Yokuts','9170', '0',' 1717-8', 0);
11333 #IfRow2D list_options list_id race option_id yokuts
11334 UPDATE `list_options` SET `notes` = '1717-8' WHERE `option_id` = 'yokuts' AND `list_id` = 'race';
11337 #IfRow2D list_options list_id race title Yokuts
11338 UPDATE `list_options` SET `notes` = '1717-8' WHERE `title` = 'Yokuts' AND `list_id` = 'race';
11341 #IfNotRow2Dx2 list_options list_id race option_id yomba title Yomba
11342 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yomba','Yomba','9180', '0',' 1600-6', 0);
11345 #IfRow2D list_options list_id race option_id yomba
11346 UPDATE `list_options` SET `notes` = '1600-6' WHERE `option_id` = 'yomba' AND `list_id` = 'race';
11349 #IfRow2D list_options list_id race title Yomba
11350 UPDATE `list_options` SET `notes` = '1600-6' WHERE `title` = 'Yomba' AND `list_id` = 'race';
11353 #IfNotRow2Dx2 list_options list_id race option_id yuchi title Yuchi
11354 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yuchi','Yuchi','9190', '0',' 1722-8', 0);
11357 #IfRow2D list_options list_id race option_id yuchi
11358 UPDATE `list_options` SET `notes` = '1722-8' WHERE `option_id` = 'yuchi' AND `list_id` = 'race';
11361 #IfRow2D list_options list_id race title Yuchi
11362 UPDATE `list_options` SET `notes` = '1722-8' WHERE `title` = 'Yuchi' AND `list_id` = 'race';
11365 #IfNotRow2Dx2 list_options list_id race option_id yuki title Yuki
11366 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yuki','Yuki','9200', '0',' 1066-0', 0);
11369 #IfRow2D list_options list_id race option_id yuki
11370 UPDATE `list_options` SET `notes` = '1066-0' WHERE `option_id` = 'yuki' AND `list_id` = 'race';
11373 #IfRow2D list_options list_id race title Yuki
11374 UPDATE `list_options` SET `notes` = '1066-0' WHERE `title` = 'Yuki' AND `list_id` = 'race';
11377 #IfNotRow2Dx2 list_options list_id race option_id yuman title Yuman
11378 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yuman','Yuman','9210', '0',' 1724-4', 0);
11381 #IfRow2D list_options list_id race option_id yuman
11382 UPDATE `list_options` SET `notes` = '1724-4' WHERE `option_id` = 'yuman' AND `list_id` = 'race';
11385 #IfRow2D list_options list_id race title Yuman
11386 UPDATE `list_options` SET `notes` = '1724-4' WHERE `title` = 'Yuman' AND `list_id` = 'race';
11389 #IfNotRow2Dx2 list_options list_id race option_id yupik_eskimo title Yupik Eskimo
11390 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yupik_eskimo','Yupik Eskimo','9220', '0',' 1896-0', 0);
11393 #IfRow2D list_options list_id race option_id yupik_eskimo
11394 UPDATE `list_options` SET `notes` = '1896-0' WHERE `option_id` = 'yupik_eskimo' AND `list_id` = 'race';
11397 #IfRow2D list_options list_id race title Yupik Eskimo
11398 UPDATE `list_options` SET `notes` = '1896-0' WHERE `title` = 'Yupik Eskimo' AND `list_id` = 'race';
11401 #IfNotRow2Dx2 list_options list_id race option_id yurok title Yurok
11402 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','yurok','Yurok','9230', '0',' 1732-7', 0);
11405 #IfRow2D list_options list_id race option_id yurok
11406 UPDATE `list_options` SET `notes` = '1732-7' WHERE `option_id` = 'yurok' AND `list_id` = 'race';
11409 #IfRow2D list_options list_id race title Yurok
11410 UPDATE `list_options` SET `notes` = '1732-7' WHERE `title` = 'Yurok' AND `list_id` = 'race';
11413 #IfNotRow2Dx2 list_options list_id race option_id zairean title Zairean
11414 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','zairean','Zairean','9240', '0',' 2066-9', 0);
11417 #IfRow2D list_options list_id race option_id zairean
11418 UPDATE `list_options` SET `notes` = '2066-9' WHERE `option_id` = 'zairean' AND `list_id` = 'race';
11421 #IfRow2D list_options list_id race title Zairean
11422 UPDATE `list_options` SET `notes` = '2066-9' WHERE `title` = 'Zairean' AND `list_id` = 'race';
11425 #IfNotRow2Dx2 list_options list_id race option_id zia title Zia
11426 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','zia','Zia','9250', '0',' 1515-6', 0);
11429 #IfRow2D list_options list_id race option_id zia
11430 UPDATE `list_options` SET `notes` = '1515-6' WHERE `option_id` = 'zia' AND `list_id` = 'race';
11433 #IfRow2D list_options list_id race title Zia
11434 UPDATE `list_options` SET `notes` = '1515-6' WHERE `title` = 'Zia' AND `list_id` = 'race';
11437 #IfNotRow2Dx2 list_options list_id race option_id zuni title Zuni
11438 INSERT INTO list_options (list_id, option_id, title, seq, is_default, notes, activity) VALUES ('race','zuni','Zuni','9260', '0',' 1516-4', 0);
11441 #IfRow2D list_options list_id race option_id zuni
11442 UPDATE `list_options` SET `notes` = '1516-4' WHERE `option_id` = 'zuni' AND `list_id` = 'race';
11445 #IfRow2D list_options list_id race title Zuni
11446 UPDATE `list_options` SET `notes` = '1516-4' WHERE `title` = 'Zuni' AND `list_id` = 'race';
11449 #IfMissingColumn lists severity_al
11450 ALTER TABLE lists ADD COLUMN severity_al VARCHAR(50) DEFAULT NULL;
11453 #IfNotRow2D list_options list_id lists option_id severity_ccda
11454 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','severity_ccda','Severity');
11455 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','unassigned','Unassigned','','10');
11456 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild','Mild','SNOMED-CT:255604002','20');
11457 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild_to_moderate','Mild to moderate','SNOMED-CT:371923003','30');
11458 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate','Moderate','SNOMED-CT:6736007','40');
11459 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate_to_severe','Moderate to severe','SNOMED-CT:371924009','50');
11460 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','severe','Severe','SNOMED-CT:24484000','60');
11461 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','life_threatening_severity','Life threatening severity','SNOMED-CT:442452003','70');
11462 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','fatal','Fatal','SNOMED-CT:399166001','80');
11465 #IfNotRow3D list_options list_id drug_route notes PO title Per Oris
11466 UPDATE list_options SET list_options.notes = 'PO' WHERE list_options.list_id = 'drug_route' AND title = 'Per Oris';
11469 #IfNotRow3D list_options list_id drug_route notes OTH title Per Rectum
11470 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Per Rectum';
11473 #IfNotRow3D list_options list_id drug_route notes OTH title To Skin
11474 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Skin';
11477 #IfNotRow3D list_options list_id drug_route notes OTH title To Affected Area
11478 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Affected Area';
11481 #IfNotRow3D list_options list_id drug_route notes OTH title Sublingual
11482 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Sublingual';
11485 #IfNotRow3D list_options list_id drug_route notes OTH title OS
11486 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OS';
11489 #IfNotRow3D list_options list_id drug_route notes OTH title OD
11490 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OD';
11493 #IfNotRow3D list_options list_id drug_route notes OTH title OU
11494 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OU';
11497 #IfNotRow3D list_options list_id drug_route notes OTH title SQ
11498 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'SQ';
11501 #IfNotRow3D list_options list_id drug_route notes IM title IM
11502 UPDATE list_options SET list_options.notes = 'IM' WHERE list_options.list_id = 'drug_route' AND title = 'IM';
11505 #IfNotRow3D list_options list_id drug_route notes IV title IV
11506 UPDATE list_options SET list_options.notes = 'IV' WHERE list_options.list_id = 'drug_route' AND title = 'IV';
11509 #IfNotRow3D list_options list_id drug_route notes NS title Per Nostril
11510 UPDATE list_options SET list_options.notes = 'NS' WHERE list_options.list_id = 'drug_route' AND title = 'Per Nostril';
11513 #IfNotRow3D list_options list_id drug_route notes OTH title Both Ears
11514 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Both Ears';
11517 #IfNotRow3D list_options list_id drug_route notes OTH title Left Ear
11518 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Left Ear';
11521 #IfNotRow3D list_options list_id drug_route notes OTH title Right Ear
11522 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Right Ear';
11525 #IfNotRow2Dx2 list_options list_id drug_route title intradermal title Intradermal
11526 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'intradermal', 'Intradermal', 20, 'ID');
11529 #IfNotRow2Dx2 list_options list_id drug_route title other title Other/Miscellaneous
11530 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'other', 'Other/Miscellaneous', 30, 'OTH');
11533 #IfNotRow2Dx2 list_options list_id drug_route title transdermal title Transdermal
11534 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'transdermal', 'Transdermal', 40, 'TD');
11537 #IfNotRow2D list_options list_id lists option_id physician_type
11538 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','physician_type','Physician Type');
11539 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','attending_physician','SNOMED-CT:405279007','Attending physician', '10');
11540 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','audiological_physician','SNOMED-CT:310172001','Audiological physician', '20');
11541 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','chest_physician','SNOMED-CT:309345004','Chest physician', '30');
11542 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','community_health_physician','SNOMED-CT:23278007','Community health physician', '40');
11543 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','consultant_physician','SNOMED-CT:158967008','Consultant physician', '50');
11544 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','general_physician','SNOMED-CT:59058001','General physician', '60');
11545 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','genitourinarymedicinephysician','SNOMED-CT:309358003','Genitourinary medicine physician', '70');
11546 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','occupational_physician','SNOMED-CT:158973009','Occupational physician', '80');
11547 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','palliative_care_physician','SNOMED-CT:309359006','Palliative care physician', '90');
11548 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','physician','SNOMED-CT:309343006','Physician', '100');
11549 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','public_health_physician','SNOMED-CT:56466003','Public health physician', '110');
11550 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','rehabilitation_physician','SNOMED-CT:309360001','Rehabilitation physician', '120');
11551 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','resident_physician','SNOMED-CT:405277009','Resident physician', '130');
11552 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','specialized_physician','SNOMED-CT:69280009','Specialized physician', '140');
11553 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','thoracic_physician','SNOMED-CT:309346003','Thoracic physician', '150');
11556 #IfNotRow3D list_options list_id marital option_id married notes M
11557 update list_options set notes = 'M' where list_id = 'marital' and option_id = 'married';
11560 #IfNotRow3D list_options list_id marital option_id single notes S
11561 update list_options set notes = 'S' where list_id = 'marital' and option_id = 'single';
11564 #IfNotRow3D list_options list_id marital option_id divorced notes D
11565 update list_options set notes = 'D' where list_id = 'marital' and option_id = 'divorced';
11568 #IfNotRow3D list_options list_id marital option_id widowed notes W
11569 update list_options set notes = 'W' where list_id = 'marital' and option_id = 'widowed';
11572 #IfNotRow3D list_options list_id marital option_id separated notes L
11573 update list_options set notes = 'L' where list_id = 'marital' and option_id = 'separated';
11574 update list_options set notes = 'T' where list_id = 'marital' and option_id = 'domestic partner';
11577 #IfMissingColumn users physician_type
11578 ALTER TABLE users ADD COLUMN physician_type VARCHAR(50) DEFAULT NULL;
11581 #IfMissingColumn facility facility_code
11582 ALTER TABLE facility ADD COLUMN facility_code VARCHAR(31) default NULL;
11585 #IfMissingColumn documents audit_master_approval_status
11586 ALTER TABLE documents ADD COLUMN audit_master_approval_status TINYINT DEFAULT 1 NOT NULL COMMENT 'approval_status from audit_master table';
11589 #IfMissingColumn documents audit_master_id
11590 ALTER TABLE documents ADD COLUMN audit_master_id int(11) default NULL;
11593 #IfMissingColumn patient_data religion
11594 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ethnicity' AND form_id='DEM');
11595 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11596 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11597 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'religion', IFNULL(@group_name,@backup_group_name), 'Religion', @seq+1, 1, 1, 0, 0, 'religious_affiliation', 1, 3, '', '', 'Patient Religion' ) ;
11598 ALTER TABLE patient_data ADD COLUMN religion varchar(40) NOT NULL default '';
11601 #IfNotRow categories name CCDA
11602 INSERT INTO categories (id, name, value, parent, lft, rght) select (select MAX(id) from categories) + 1, 'CCDA', '', 1, rght, rght + 1 from categories where name = 'Categories';
11603 UPDATE categories SET rght = rght + 2 WHERE name = 'Categories';
11604 UPDATE categories_seq SET id = (select MAX(id) from categories);
11607 #IfNotRow2D list_options list_id abook_type option_id ccda
11608 INSERT INTO list_options (list_id, option_id, title, seq, option_value) VALUES ('abook_type', 'ccda', 'Care Coordination', 35, 2);
11611 #IfNotRow2D list_options list_id abook_type option_id emr_direct
11612 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'emr_direct', 'EMR Direct' ,105, 4);
11615 #IfNotRow2D list_options list_id abook_type option_id external_provider
11616 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_provider', 'External Provider' ,110, 1);
11619 #IfNotRow2D list_options list_id abook_type option_id external_org
11620 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_org', 'External Organization' ,120, 1);
11623 #IfMissingColumn immunizations external_id
11624 ALTER TABLE `immunizations` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11627 #IfMissingColumn prescriptions external_id
11628 ALTER TABLE `prescriptions` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11631 #IfMissingColumn lists external_id
11632 ALTER TABLE `lists` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11635 #IfMissingColumn form_vitals external_id
11636 ALTER TABLE `form_vitals` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11639 #IfMissingColumn form_encounter external_id
11640 ALTER TABLE `form_encounter` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11643 #IfMissingColumn billing external_id
11644 ALTER TABLE `billing` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11647 #IfMissingColumn procedure_order external_id
11648 ALTER TABLE `procedure_order` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11651 #IfMissingColumn patient_data industry
11652 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='occupation' AND form_id='DEM');
11653 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11654 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11655 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'industry', IFNULL(@group_name,@backup_group_name), 'Industry', @seq+1, 1, 1, 0, 0, 'Industry', 1, 1, '', '', 'Industry' ) ;
11656 ALTER TABLE patient_data ADD COLUMN industry TEXT NOT NULL;
11659 #IfNotRow2D list_options list_id lists option_id Industry
11660 INSERT INTO `list_options` (`list_id`, `option_id`, `title`) VALUES('lists','Industry','Industry');
11661 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'law_firm', 'Law Firm', 10);
11662 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'engineering_firm', 'Engineering Firm', 20);
11663 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'construction_firm', 'Construction Firm', 30);
11666 #IfNotListOccupation
11669 #IfNotRow2D list_options list_id Occupation option_id lawyer
11670 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11671 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'lawyer', 'Lawyer', IFNULL(@max_list_id,0) + 10);
11674 #IfNotRow2D list_options list_id Occupation option_id engineer
11675 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11676 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'engineer', 'Engineer', (@max_list_id+10));
11679 #IfNotRow2D list_options list_id Occupation option_id site_worker
11680 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11681 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'site_worker', 'Site Worker', (@max_list_id+10));
11684 #IfNotRow3D layout_options field_id occupation form_id DEM data_type 26
11685 UPDATE layout_options SET list_id='Occupation', data_type='26', fld_length='0', max_length='0', edit_options='' WHERE field_id='occupation' AND form_id='DEM';
11688 #IfMissingColumn patient_access_offsite portal_relation
11689 ALTER TABLE patient_access_offsite ADD COLUMN portal_relation VARCHAR(100) NULL;
11692 #IfMissingColumn pnotes portal_relation
11693 ALTER TABLE pnotes ADD COLUMN `portal_relation` VARCHAR(100) NULL;
11696 #IfMissingColumn pnotes is_msg_encrypted
11697 ALTER TABLE pnotes ADD is_msg_encrypted TINYINT(2) DEFAULT '0' COMMENT 'Whether messsage encrypted 0-Not encrypted, 1-Encrypted';
11700 #IfMissingColumn log log_from
11701 ALTER TABLE `log` ADD `log_from` VARCHAR(20) DEFAULT 'open-emr';
11704 #IfMissingColumn log menu_item_id
11705 ALTER TABLE `log` ADD `menu_item_id` INT(11) DEFAULT NULL;
11708 #IfNotTable patient_portal_menu
11709 CREATE TABLE `patient_portal_menu` (
11710 `patient_portal_menu_id` INT(11) NOT NULL AUTO_INCREMENT,
11711 `patient_portal_menu_group_id` INT(11) DEFAULT NULL,
11712 `menu_name` VARCHAR(40) DEFAULT NULL,
11713 `menu_order` SMALLINT(4) DEFAULT NULL,
11714 `menu_status` TINYINT(2) DEFAULT '1',
11715 PRIMARY KEY (`patient_portal_menu_id`)
11716 ) ENGINE=INNODB AUTO_INCREMENT=14;
11718 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (1,1,'Dashboard',3,1);
11719 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (2,1,'My Profile',6,1);
11720 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (3,1,'Appointments',9,1);
11721 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (4,1,'Documents',12,1);
11722 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (5,1,'Med Records',15,1);
11723 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (6,1,'My Account',18,1);
11724 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (7,1,'Mailbox',21,1);
11725 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (8,1,'Password',24,1);
11726 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (9,1,'View Log',27,1);
11727 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (10,1,'Logout',30,1);
11728 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (11,1,'View Health Information',33,1);
11729 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (12,1,'Download Health Information',36,1);
11730 INSERT INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (13,1,'Transmit Health Information',39,1);
11734 #IfMissingColumn log ccda_doc_id
11735 ALTER TABLE `log` ADD `ccda_doc_id` INT(11) DEFAULT NULL COMMENT 'CCDA document id from ccda';
11741 #IfNotRow2D list_options list_id reaction option_id unassigned
11742 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('reaction', 'unassigned', 'Unassigned', 0);
11745 #IfNotRow2D list_options list_id reaction option_id hives
11746 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11747 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'hives', 'Hives', (@max_list_id+10), 'SNOMED-CT:247472004');
11750 #IfNotRow2D list_options list_id reaction option_id nausea
11751 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11752 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'nausea', 'Nausea', (@max_list_id+10), 'SNOMED-CT:422587007');
11755 #IfNotRow2D list_options list_id lists option_id county
11756 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','county','County');
11757 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','adair','ADAIR','001', '10');
11758 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','andrew','ANDREW','003', '20');
11759 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','atchison','ATCHISON','005', '30');
11760 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','audrain','AUDRAIN','007', '40');
11761 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','barry','BARRY','009', '50');
11764 #IfMissingColumn patient_data county
11765 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='country_code' AND form_id='DEM');
11766 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11767 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11768 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'county', IFNULL(@group_name,@backup_group_name), 'County', @seq+1, 26, 1, 0, 0, 'county', 1, 1, '', '', 'County' ) ;
11769 ALTER TABLE `patient_data` ADD COLUMN `county` varchar(40) NOT NULL default '';
11772 #IfNotListImmunizationManufacturer
11775 #IfNotRow2D list_options list_id lists option_id Immunization_Manufacturer
11776 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Manufacturer','Immunization Manufacturer');
11777 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AB','Abbott Laboratories','AB','10');
11778 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ACA','Acambis, Inc','ACA','20');
11779 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AD','Adams Laboratories, Inc.','AD','30');
11780 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AKR','Akorn, Inc','AKR','40');
11781 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ALP','Alpha Therapeutic Corporation','ALP','50');
11782 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AR','Armour','AR','60');
11783 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVB','Aventis Behring L.L.C.','AVB','70');
11784 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVI','Aviron','AVI','80');
11785 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BRR','Barr Laboratories','BRR','90');
11786 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAH','Baxter Healthcare Corporation','BAH','100');
11787 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BA','Baxter Healthcare Corporation-inactive','BA','110');
11788 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAY','Bayer Corporation','BAY','120');
11789 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BP','Berna Products','BP','130');
11790 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BPC','Berna Products Corporation','BPC','140');
11791 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BTP','Biotest Pharmaceuticals Corporation','BTP','150');
11792 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CNJ','Cangene Corporation','CNJ','160');
11793 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CMP','Celltech Medeva Pharmaceuticals','CMP','170');
11794 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CEN','Centeon L.L.C.','CEN','180');
11795 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CHI','Chiron Corporation','CHI','190');
11796 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CON','Connaught','CON','200');
11797 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CRU','Crucell','CRU','210');
11798 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CSL','CSL Behring, Inc','CSL','220');
11799 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','DVC','DynPort Vaccine Company, LLC','DVC','230');
11800 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIP','Emergent BioDefense Operations Lansing','MIP','240');
11801 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','EVN','Evans Medical Limited','EVN','250');
11802 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GEO','GeoVax Labs, Inc.','GEO','260');
11803 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SKB','GlaxoSmithKline','SKB','270');
11804 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRE','Greer Laboratories, Inc.','GRE','280');
11805 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRF','Grifols','GRF','290');
11806 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IDB','ID Biomedical','IDB','300');
11807 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IAG','Immuno International AG','IAG','310');
11808 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IUS','Immuno-U.S., Inc.','IUS','320');
11809 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','INT','Intercell Biomedical','INT','330');
11810 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JNJ','Johnson and Johnson','JNJ','340');
11811 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','KGC','Korea Green Cross Corporation','KGC','350');
11812 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','LED','Lederle','LED','360');
11813 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MBL','Massachusetts Biologic Laboratories','MBL','370');
11814 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MA','Massachusetts Public Health Biologic Laboratories','MA','380');
11815 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MED','MedImmune, Inc.','MED','390');
11816 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MSD','Merck and Co., Inc.','MSD','400');
11817 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IM','Merieux','IM','410');
11818 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIL','Miles','MIL','420');
11819 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAB','NABI','NAB','430');
11820 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NYB','New York Blood Center','NYB','440');
11821 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAV','North American Vaccine, Inc.','NAV','450');
11822 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NOV','Novartis Pharmaceutical Corporation','NOV','460');
11823 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NVX','Novavax, Inc.','NVX','470');
11824 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTC','Organon Teknika Corporation','OTC','480');
11825 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ORT','Ortho-clinical Diagnostics','ORT','490');
11826 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTH','Other manufacturer','OTH','500');
11827 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PD','Parkedale Pharmaceuticals','PD','510');
11828 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PFR','Pfizer, Inc','PFR','520');
11829 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PWJ','PowderJect Pharmaceuticals','PWJ','530');
11830 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PRX','Praxis Biologics','PRX','540');
11831 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PSC','Protein Sciences','PSC','550');
11832 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PMC','sanofi pasteur','PMC','560');
11833 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SCL','Sclavo, Inc.','SCL','570');
11834 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SOL','Solvay Pharmaceuticals','SOL','580');
11835 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SI','Swiss Serum and Vaccine Inst.','SI','590');
11836 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','TAL','Talecris Biotherapeutics','TAL','600');
11837 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JPN','The Research Foundation for Microbial Diseases of Osaka University (BIKEN)','JPN','610');
11838 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','USA','United States Army Medical Research and Material Command','USA','620');
11839 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','UNK','Unknown manufacturer','UNK','630');
11840 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','VXG','VaxGen','VXG','640');
11841 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WAL','Wyeth','WAL','650');
11842 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WA','Wyeth-Ayerst','WA','660');
11843 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ZLB','ZLB Behring','ZLB','670');
11846 #IfNotRow2D list_options list_id lists option_id Immunization_Completion_Status
11847 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Completion_Status','Immunization Completion Status');
11848 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Completed','completed','CP', '10');
11849 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Refused','Refused','RE', '20');
11850 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Not_Administered','Not Administered','NA', '30');
11851 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Partially_Administered','Partially Administered','PA', '40');
11854 #IfMissingColumn immunizations completion_status
11855 ALTER TABLE immunizations ADD COLUMN `completion_status` VARCHAR(50) DEFAULT NULL;
11858 #IfMissingColumn prescriptions indication
11859 ALTER TABLE prescriptions ADD COLUMN `indication` text;
11862 #IfMissingColumn prescriptions end_date
11863 ALTER TABLE prescriptions ADD COLUMN `end_date` date default NULL;
11866 #IfNotTable external_procedures
11867 CREATE TABLE `external_procedures` (
11868 `ep_id` int(11) NOT NULL AUTO_INCREMENT,
11869 `ep_date` date DEFAULT NULL,
11870 `ep_code_type` varchar(20) DEFAULT NULL,
11871 `ep_code` varchar(9) DEFAULT NULL,
11872 `ep_pid` int(11) DEFAULT NULL,
11873 `ep_encounter` int(11) DEFAULT NULL,
11874 `ep_code_text` longtext,
11875 `ep_facility_id` varchar(255) DEFAULT NULL,
11876 `ep_external_id` varchar(255) DEFAULT NULL,
11877 PRIMARY KEY (`ep_id`)
11881 #IfNotTable external_encounters
11882 CREATE TABLE `external_encounters` (
11883 `ee_id` int(11) NOT NULL AUTO_INCREMENT,
11884 `ee_date` date DEFAULT NULL,
11885 `ee_pid` int(11) DEFAULT NULL,
11886 `ee_provider_id` varchar(255) DEFAULT NULL,
11887 `ee_facility_id` varchar(255) DEFAULT NULL,
11888 `ee_encounter_diagnosis` varchar(255) DEFAULT NULL,
11889 `ee_external_id` varchar(255) DEFAULT NULL,
11890 PRIMARY KEY (`ee_id`)
11894 #IfMissingColumn prescriptions prn
11895 ALTER TABLE prescriptions ADD COLUMN `prn` VARCHAR(30) DEFAULT NULL;
11898 #IfMissingColumn patient_data care_team
11899 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ref_providerID' AND form_id='DEM');
11900 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11901 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11902 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'care_team', IFNULL(@group_name,@backup_group_name), 'Care Team', @seq+1, 11, 1, 0, 0, '', 1, 1, '', '', '' ) ;
11903 alter table patient_data add column care_team int(11) DEFAULT NULL;
11906 #IfNotTable form_observation
11907 CREATE TABLE `form_observation` (
11908 `id` bigint(20) NOT NULL,
11909 `date` DATE DEFAULT NULL,
11910 `pid` bigint(20) DEFAULT NULL,
11911 `encounter` varchar(255) DEFAULT NULL,
11912 `user` varchar(255) DEFAULT NULL,
11913 `groupname` varchar(255) DEFAULT NULL,
11914 `authorized` tinyint(4) DEFAULT NULL,
11915 `activity` tinyint(4) DEFAULT NULL,
11916 `code` varchar(255) DEFAULT NULL,
11917 `observation` varchar(255) DEFAULT NULL,
11918 `ob_value` varchar(255),
11919 `ob_unit` varchar(255),
11920 `description` varchar(255),
11921 `code_type` varchar(255),
11922 `table_code` varchar(255)
11924 SET @seq = (SELECT MAX(id) FROM registry);
11925 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Observation', 1, 'observation', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11928 #IfNotTable form_care_plan
11929 CREATE TABLE `form_care_plan` (
11930 `id` bigint(20) NOT NULL,
11931 `date` DATE DEFAULT NULL,
11932 `pid` bigint(20) DEFAULT NULL,
11933 `encounter` varchar(255) DEFAULT NULL,
11934 `user` varchar(255) DEFAULT NULL,
11935 `groupname` varchar(255) DEFAULT NULL,
11936 `authorized` tinyint(4) DEFAULT NULL,
11937 `activity` tinyint(4) DEFAULT NULL,
11938 `code` varchar(255) DEFAULT NULL,
11940 `description` text,
11941 `external_id` VARCHAR(30) DEFAULT NULL
11943 SET @seq = (SELECT MAX(id) FROM registry);
11944 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Care Plan', 1, 'care_plan', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11947 #IfNotTable form_functional_cognitive_status
11948 CREATE TABLE `form_functional_cognitive_status` (
11949 `id` bigint(20) NOT NULL,
11950 `date` DATE DEFAULT NULL,
11951 `pid` bigint(20) DEFAULT NULL,
11952 `encounter` varchar(255) DEFAULT NULL,
11953 `user` varchar(255) DEFAULT NULL,
11954 `groupname` varchar(255) DEFAULT NULL,
11955 `authorized` tinyint(4) DEFAULT NULL,
11956 `activity` tinyint(4) DEFAULT NULL,
11957 `code` varchar(255) DEFAULT NULL,
11959 `description` text,
11960 `external_id` VARCHAR(30) DEFAULT NULL
11962 SET @seq = (SELECT MAX(id) FROM registry);
11963 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Functional and Cognitive Status', 1, 'functional_cognitive_status', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11966 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_htn_bp_measure_cqm' AND `pid` = 0;
11967 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_adult_wt_screen_fu_cqm' AND `pid` = 0;
11968 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_wt_assess_couns_child_cqm' AND `pid` = 0;
11969 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_pneumovacc_ge_65_cqm' AND `pid` = 0;
11971 #IfMissingColumn clinical_rules amc_2014_stage1_flag
11972 ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage1_flag` tinyint(1) COMMENT '2014 Stage 1 - Automated Measure Calculation flag for (unable to customize per patient)';
11974 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–4' WHERE `clinical_rules`.`id` = 'problem_list_amc' AND `clinical_rules`.`pid` =0;
11975 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–5' WHERE `clinical_rules`.`id` = 'med_list_amc' AND `clinical_rules`.`pid` =0;
11976 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–6' WHERE `clinical_rules`.`id` = 'med_allergy_list_amc' AND `clinical_rules`.`pid` =0;
11977 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–7' WHERE `clinical_rules`.`id` = 'cpoe_med_amc' AND `clinical_rules`.`pid` =0;
11978 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–9' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11979 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–11' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11980 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–12' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11981 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–13' WHERE `clinical_rules`.`id` = 'send_reminder_amc' AND `clinical_rules`.`pid` =0;
11982 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–15' WHERE `clinical_rules`.`id` = 'provide_sum_pat_amc' AND `clinical_rules`.`pid` =0;
11983 UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–16' WHERE `clinical_rules`.`id` = 'patient_edu_amc' AND `clinical_rules`.`pid` =0;
11986 #IfMissingColumn clinical_rules amc_2014_stage2_flag
11987 ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage2_flag` tinyint(1) COMMENT '2014 Stage 2 - Automated Measure Calculation flag for (unable to customize per patient)';
11989 UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11990 UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11991 UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11994 #IfNotRow clinical_rules id rule_children_pharyngitis_cqm
11995 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_children_pharyngitis_cqm', 0, 0, 0, 1, '0002', '', 0, '', 0, 0, 0, '', 1, 1);
11998 #IfNotRow2D list_options list_id clinical_rules option_id rule_children_pharyngitis_cqm
11999 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_children_pharyngitis_cqm', 'Appropriate Testing for Children with Pharyngitis (CQM)', 502, 0, 0, '', '', '', 0, 0);
12002 #IfNotRow clinical_rules id rule_fall_screening_cqm
12003 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_fall_screening_cqm', 0, 0, 0, 1, '0101', '', 0, '', 0, 0, 0, '', 1, 1);
12006 #IfNotRow2D list_options list_id clinical_rules option_id rule_fall_screening_cqm
12007 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_fall_screening_cqm', 'Falls: Screening, Risk-Assessment, and Plan of Care to Prevent Future Falls (CQM)', 504, 0, 0, '', '', '', 0, 0);
12010 #IfNotRow clinical_rules id rule_pain_intensity_cqm
12011 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_pain_intensity_cqm', 0, 0, 0, 1, '0384', '', 0, '', 0, 0, 0, '', 1, 1);
12014 #IfNotRow2D list_options list_id clinical_rules option_id rule_pain_intensity_cqm
12015 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_pain_intensity_cqm', 'Oncology: Medical and Radiation – Pain Intensity Quantified (CQM)', 506, 0, 0, '', '', '', 0, 0);
12018 #IfNotRow clinical_rules id rule_child_immun_stat_2014_cqm
12019 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_child_immun_stat_2014_cqm', 0, 0, 0, 1, '0038', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12022 #IfNotRow2D list_options list_id clinical_rules option_id rule_child_immun_stat_2014_cqm
12023 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_child_immun_stat_2014_cqm', 'Childhood immunization Status (CQM)', 250, 0, 0, '', '', '', 0, 0);
12026 #IfNotRow clinical_rules id rule_tob_use_2014_cqm
12027 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_tob_use_2014_cqm', 0, 0, 0, 1, '0028', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12030 #IfNotRow2D list_options list_id clinical_rules option_id rule_tob_use_2014_cqm
12031 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_tob_use_2014_cqm', 'Preventive Care and Screening: Tobacco Use: Screening and Cessation Intervention (CQM)', 210, 0, 0, '', '', '', 0, 0);
12034 #IfNotRow clinical_rules id image_results_amc
12035 INSERT INTO `clinical_rules`
12036 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12037 ('image_results_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–20', 0, 0, 0, 1);
12040 #IfNotRow2D list_options list_id clinical_rules option_id image_results_amc
12041 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12042 ('clinical_rules', 'image_results_amc', 'Image Results', 3000, 0, 0, '', '', '', 0, 0);
12045 #IfNotRow clinical_rules id family_health_history_amc
12046 INSERT INTO `clinical_rules`
12047 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12048 ('family_health_history_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–21', 0, 0, 0, 1);
12051 #IfNotRow2D list_options list_id clinical_rules option_id family_health_history_amc
12052 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12053 ('clinical_rules', 'family_health_history_amc', 'Family Health History', 3100, 0, 0, '', '', '', 0, 0);
12056 #IfNotRow clinical_rules id electronic_notes_amc
12057 INSERT INTO `clinical_rules`
12058 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12059 ('electronic_notes_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–22', 0, 0, 0, 1);
12062 #IfNotRow2D list_options list_id clinical_rules option_id electronic_notes_amc
12063 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12064 ('clinical_rules', 'electronic_notes_amc', 'Electronic Notes', 3200, 0, 0, '', '', '', 0, 0);
12067 #IfNotRow clinical_rules id secure_messaging_amc
12068 INSERT INTO `clinical_rules`
12069 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12070 ('secure_messaging_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)', 0, 0, 0, 1);
12073 #IfNotRow2D list_options list_id clinical_rules option_id secure_messaging_amc
12074 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12075 ('clinical_rules', 'secure_messaging_amc', 'Secure Electronic Messaging', 3400, 0, 0, '', '', '', 0, 0);
12078 #IfNotRow clinical_rules id view_download_transmit_amc
12079 INSERT INTO `clinical_rules`
12080 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12081 ('view_download_transmit_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12084 #IfNotRow2D list_options list_id clinical_rules option_id view_download_transmit_amc
12085 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12086 ('clinical_rules', 'view_download_transmit_amc', 'View, Download, Transmit (VDT) (Measure B)', 3500, 0, 0, '', '', '', 0, 0);
12089 #IfNotRow clinical_rules id cpoe_radiology_amc
12090 INSERT INTO `clinical_rules`
12091 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12092 ('cpoe_radiology_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12095 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_radiology_amc
12096 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12097 ('clinical_rules', 'cpoe_radiology_amc', 'Use CPOE for radiology orders.', 46, 0, 0, '', '', '', 0, 0);
12100 #IfNotRow clinical_rules id cpoe_proc_orders_amc
12101 INSERT INTO `clinical_rules`
12102 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12103 ('cpoe_proc_orders_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12106 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_proc_orders_amc
12107 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12108 ('clinical_rules', 'cpoe_proc_orders_amc', 'Use CPOE for procedure orders.', 47, 0, 0, '', '', '', 0, 0);
12111 #IfNotRow clinical_rules id send_reminder_stage2_amc
12112 INSERT INTO `clinical_rules`
12113 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12114 ('send_reminder_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(d)', 0, 0, 1, '170.314(g)(1)/(2)–13', 0, 0, 0, 1);
12117 #IfNotRow2D list_options list_id clinical_rules option_id send_reminder_stage2_amc
12118 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12119 ('clinical_rules', 'send_reminder_stage2_amc', 'Send reminders to patients per patient preference for preventive/follow up care.', 60, 0, 0, '', '', '', 0, 0);
12122 #IfNotRow clinical_rules id cpoe_med_stage2_amc
12123 INSERT INTO `clinical_rules`
12124 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12125 ('cpoe_med_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 1, 1);
12128 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_med_stage2_amc
12129 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12130 ('clinical_rules', 'cpoe_med_stage2_amc', 'Use CPOE for medication orders.(Alternative)', 47, 0, 0, '', '', '', 0, 0);
12133 #IfNotRow clinical_rules id patient_edu_stage2_amc
12134 INSERT INTO `clinical_rules`
12135 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12136 ('patient_edu_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(m)', 0, 0, 1, '170.314(g)(1)/(2)–16', 0, 0, 0, 1);
12139 #IfNotRow2D list_options list_id clinical_rules option_id patient_edu_stage2_amc
12140 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12141 ('clinical_rules', 'patient_edu_stage2_amc', 'Use certified EHR technology to identify patient-specific education resources and provide those resources to the patient if appropriate(New).', 40, 0, 0, '', '', '', 0, 0);
12144 #IfNotRow clinical_rules id record_vitals_1_stage1_amc
12145 INSERT INTO `clinical_rules`
12146 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12147 ('record_vitals_1_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12150 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_1_stage1_amc
12151 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12152 ('clinical_rules', 'record_vitals_1_stage1_amc', 'Record and chart changes in vital signs (SET 1).', 20, 0, 0, '', '', '', 0, 0);
12155 #IfNotRow clinical_rules id record_vitals_2_stage1_amc
12156 INSERT INTO `clinical_rules`
12157 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12158 ('record_vitals_2_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12161 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_2_stage1_amc
12162 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12163 ('clinical_rules', 'record_vitals_2_stage1_amc', 'Record and chart changes in vital signs (BP out of scope).', 20, 0, 0, '', '', '', 0, 0);
12166 #IfNotRow clinical_rules id record_vitals_3_stage1_amc
12167 INSERT INTO `clinical_rules`
12168 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12169 ('record_vitals_3_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12172 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_3_stage1_amc
12173 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12174 ('clinical_rules', 'record_vitals_3_stage1_amc', 'Record and chart changes in vital signs (Height / Weight out of scope).', 20, 0, 0, '', '', '', 0, 0);
12177 #IfNotRow clinical_rules id record_vitals_4_stage1_amc
12178 INSERT INTO `clinical_rules`
12179 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12180 ('record_vitals_4_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12183 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_4_stage1_amc
12184 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12185 ('clinical_rules', 'record_vitals_4_stage1_amc', 'Record and chart changes in vital signs ( Height / Weight / BP with in scope ).', 20, 0, 0, '', '', '', 0, 0);
12188 #IfNotRow clinical_rules id record_vitals_stage2_amc
12189 INSERT INTO `clinical_rules`
12190 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12191 ('record_vitals_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12194 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_stage2_amc
12195 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12196 ('clinical_rules', 'record_vitals_stage2_amc', 'Record and chart changes in vital signs (New).', 20, 0, 0, '', '', '', 0, 0);
12199 #IfNotRow clinical_rules id provide_sum_pat_stage2_amc
12200 INSERT INTO `clinical_rules`
12201 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12202 ('provide_sum_pat_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(h)', 0, 0, 1, '170.314(g)(1)/(2)–15', 0, 0, 0, 1);
12205 #IfNotRow2D list_options list_id clinical_rules option_id provide_sum_pat_stage2_amc
12206 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12207 ('clinical_rules', 'provide_sum_pat_stage2_amc', 'Provide clinical summaries for patients for each office visit (New).', 75, 0, 0, '', '', '', 0, 0);
12210 #IfNotRow clinical_rules id vdt_stage2_amc
12211 INSERT INTO `clinical_rules`
12212 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12213 ('vdt_stage2_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12216 #IfNotRow2D list_options list_id clinical_rules option_id vdt_stage2_amc
12217 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12218 ('clinical_rules', 'vdt_stage2_amc', 'View, Download, Transmit (VDT) (Measure A)', 3500, 0, 0, '', '', '', 0, 0);
12221 #IfNotRow clinical_rules id send_sum_stage1_amc
12222 INSERT INTO `clinical_rules`
12223 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12224 ('send_sum_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 1, 0);
12227 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage1_amc
12228 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12229 ('clinical_rules', 'send_sum_stage1_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral.', 80, 0, 0, '', '', '', 0, 0);
12232 #IfNotRow clinical_rules id send_sum_1_stage2_amc
12233 INSERT INTO `clinical_rules`
12234 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12235 ('send_sum_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12238 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_1_stage2_amc
12239 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12240 ('clinical_rules', 'send_sum_1_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure A).', 80, 0, 0, '', '', '', 0, 0);
12243 #IfNotRow clinical_rules id send_sum_stage2_amc
12244 INSERT INTO `clinical_rules`
12245 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12246 ('send_sum_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12249 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage2_amc
12250 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12251 ('clinical_rules', 'send_sum_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure B).', 80, 0, 0, '', '', '', 0, 0);
12254 #IfNotRow clinical_rules id e_prescribe_stage1_amc
12255 INSERT INTO `clinical_rules`
12256 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12257 ('e_prescribe_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 1, 0);
12260 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_stage1_amc
12261 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12262 ('clinical_rules', 'e_prescribe_stage1_amc', 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).', 50, 0, 0, '', '', '', 0, 0);
12265 #IfNotRow clinical_rules id e_prescribe_1_stage2_amc
12266 INSERT INTO `clinical_rules`
12267 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12268 ('e_prescribe_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12271 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_1_stage2_amc
12272 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12273 ('clinical_rules', 'e_prescribe_1_stage2_amc', 'Generate and transmit permissible prescriptions electronically (All Prescriptions).', 50, 0, 0, '', '', '', 0, 0);
12276 #IfNotRow clinical_rules id e_prescribe_2_stage2_amc
12277 INSERT INTO `clinical_rules`
12278 (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12279 ('e_prescribe_2_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12282 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc
12283 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12284 ('clinical_rules', 'e_prescribe_2_stage2_amc', 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).', 50, 0, 0, '', '', '', 0, 0);
12287 #IfMissingColumn users cpoe
12288 ALTER TABLE `users` ADD `cpoe` tinyint(1) NULL DEFAULT NULL;
12291 #IfMissingColumn procedure_order_code procedure_order_title
12292 ALTER TABLE `procedure_order_code` ADD `procedure_order_title` varchar( 255 ) NULL DEFAULT NULL;
12295 #IfMissingColumn procedure_providers lab_director
12296 ALTER TABLE `procedure_providers` ADD `lab_director` bigint(20) NOT NULL DEFAULT '0';
12299 #IfNotRow2D list_options list_id lists option_id order_type
12300 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('lists','order_type','Order Types', 1,0);
12301 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','procedure','Procedure',10,0);
12302 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','intervention','Intervention',20,0);
12303 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','laboratory_test','Laboratory Test',30,0);
12304 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','physical_exam','Physical Exam',40,0);
12305 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','risk_category','Risk Category Assessment',50,0);
12306 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','patient_characteristics','Patient Characteristics',60,0);
12307 INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','imaging','Imaging',70,0);
12310 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-PCS-Long-Abbrev-Titles.zip
12311 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-PCS-Long-Abbrev-Titles.zip', 'd5ea519d0257db0ed7deb0406a4d0503');
12314 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-General-Equivalence-Mappings.zip
12315 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-General-Equivalence-Mappings.zip', '3324a45b6040be7e48ab770a0d3ca695');
12318 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-Code-Descriptions-in-Tabular-Order.zip
12319 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-Code-Descriptions-in-Tabular-Order.zip', '518a47fe9e268e4fb72fecf633d15f17');
12322 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-ProcedureGEMs.zip
12323 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-ProcedureGEMs.zip', '45a8d9da18d8aed57f0c6ea91e3e8fe4');
12326 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_dx_2016.zip
12327 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_dx_2016.zip', '1b53b512e10c1fdf7ae4cfd1baa8dfbb');
12330 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_pr_2016.zip
12331 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_pr_2016.zip', '3c780dd103d116aa57980decfddd4f19');
12334 #IfNotRow2D list_options list_id transactions option_id LBTref
12335 UPDATE list_options SET title = 'Layout-Based Transaction Forms', seq = 9 WHERE list_id = 'lists' AND option_id = 'transactions';
12336 UPDATE list_options SET option_id = 'LBTref' WHERE list_id = 'transactions' AND option_id = 'Referral';
12337 UPDATE list_options SET option_id = 'LBTptreq' WHERE list_id = 'transactions' AND option_id = 'Patient Request';
12338 UPDATE list_options SET option_id = 'LBTphreq' WHERE list_id = 'transactions' AND option_id = 'Physician Request';
12339 UPDATE list_options SET option_id = 'LBTlegal' WHERE list_id = 'transactions' AND option_id = 'Legal';
12340 UPDATE list_options SET option_id = 'LBTbill' WHERE list_id = 'transactions' AND option_id = 'Billing';
12341 UPDATE transactions SET title = 'LBTref' WHERE title = 'Referral';
12342 UPDATE transactions SET title = 'LBTptreq' WHERE title = 'Patient Request';
12343 UPDATE transactions SET title = 'LBTphreq' WHERE title = 'Physician Request';
12344 UPDATE transactions SET title = 'LBTlegal' WHERE title = 'Legal';
12345 UPDATE transactions SET title = 'LBTbill' WHERE title = 'Billing';
12346 UPDATE layout_options SET form_id = 'LBTref' WHERE form_id = 'REF';
12348 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12349 `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12350 VALUES ('LBTptreq','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12352 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12353 `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12354 VALUES ('LBTphreq','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12356 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12357 `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12358 VALUES ('LBTlegal','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12360 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12361 `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12362 VALUES ('LBTbill' ,'body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12365 #IfNotTable lbt_data
12366 CREATE TABLE `lbt_data` (
12367 `form_id` bigint(20) NOT NULL COMMENT 'references transactions.id',
12368 `field_id` varchar(31) NOT NULL COMMENT 'references layout_options.field_id',
12369 `field_value` TEXT NOT NULL,
12370 PRIMARY KEY (`form_id`,`field_id`)
12371 ) ENGINE=MyISAM COMMENT='contains all data from layout-based transactions';
12374 #IfColumn transactions body
12375 INSERT INTO lbt_data SELECT id, 'body' , body FROM transactions WHERE body != '';
12376 ALTER TABLE transactions DROP COLUMN body;
12378 #IfColumn transactions refer_date
12379 INSERT INTO lbt_data SELECT id, 'refer_date' , refer_date FROM transactions WHERE refer_date IS NOT NULL;
12380 ALTER TABLE transactions DROP COLUMN refer_date;
12382 #IfColumn transactions refer_from
12383 INSERT INTO lbt_data SELECT id, 'refer_from' , refer_from FROM transactions WHERE refer_from != 0;
12384 ALTER TABLE transactions DROP COLUMN refer_from;
12386 #IfColumn transactions refer_to
12387 INSERT INTO lbt_data SELECT id, 'refer_to' , refer_to FROM transactions WHERE refer_to != 0;
12388 ALTER TABLE transactions DROP COLUMN refer_to;
12390 #IfColumn transactions refer_diag
12391 INSERT INTO lbt_data SELECT id, 'refer_diag' , refer_diag FROM transactions WHERE refer_diag != '';
12392 ALTER TABLE transactions DROP COLUMN refer_diag;
12394 #IfColumn transactions refer_risk_level
12395 INSERT INTO lbt_data SELECT id, 'refer_risk_level' , refer_risk_level FROM transactions WHERE refer_risk_level != '';
12396 ALTER TABLE transactions DROP COLUMN refer_risk_level;
12398 #IfColumn transactions refer_vitals
12399 INSERT INTO lbt_data SELECT id, 'refer_vitals' , refer_vitals FROM transactions WHERE refer_vitals != 0;
12400 ALTER TABLE transactions DROP COLUMN refer_vitals;
12402 #IfColumn transactions refer_external
12403 INSERT INTO lbt_data SELECT id, 'refer_external' , refer_external FROM transactions WHERE refer_external != 0;
12404 ALTER TABLE transactions DROP COLUMN refer_external;
12406 #IfColumn transactions refer_related_code
12407 INSERT INTO lbt_data SELECT id, 'refer_related_code', refer_related_code FROM transactions WHERE refer_related_code != '';
12408 ALTER TABLE transactions DROP COLUMN refer_related_code;
12410 #IfColumn transactions refer_reply_date
12411 INSERT INTO lbt_data SELECT id, 'refer_reply_date' , refer_reply_date FROM transactions WHERE refer_reply_date IS NOT NULL;
12412 ALTER TABLE transactions DROP COLUMN refer_reply_date;
12414 #IfColumn transactions reply_date
12415 INSERT INTO lbt_data SELECT id, 'reply_date' , reply_date FROM transactions WHERE reply_date IS NOT NULL;
12416 ALTER TABLE transactions DROP COLUMN reply_date;
12418 #IfColumn transactions reply_from
12419 INSERT INTO lbt_data SELECT id, 'reply_from' , reply_from FROM transactions WHERE reply_from != '';
12420 ALTER TABLE transactions DROP COLUMN reply_from;
12422 #IfColumn transactions reply_init_diag
12423 INSERT INTO lbt_data SELECT id, 'reply_init_diag' , reply_init_diag FROM transactions WHERE reply_init_diag != '';
12424 ALTER TABLE transactions DROP COLUMN reply_init_diag;
12426 #IfColumn transactions reply_final_diag
12427 INSERT INTO lbt_data SELECT id, 'reply_final_diag' , reply_final_diag FROM transactions WHERE reply_final_diag != '';
12428 ALTER TABLE transactions DROP COLUMN reply_final_diag;
12430 #IfColumn transactions reply_documents
12431 INSERT INTO lbt_data SELECT id, 'reply_documents' , reply_documents FROM transactions WHERE reply_documents != '';
12432 ALTER TABLE transactions DROP COLUMN reply_documents;
12434 #IfColumn transactions reply_findings
12435 INSERT INTO lbt_data SELECT id, 'reply_findings' , reply_findings FROM transactions WHERE reply_findings != '';
12436 ALTER TABLE transactions DROP COLUMN reply_findings;
12438 #IfColumn transactions reply_services
12439 INSERT INTO lbt_data SELECT id, 'reply_services' , reply_services FROM transactions WHERE reply_services != '';
12440 ALTER TABLE transactions DROP COLUMN reply_services;
12442 #IfColumn transactions reply_recommend
12443 INSERT INTO lbt_data SELECT id, 'reply_recommend' , reply_recommend FROM transactions WHERE reply_recommend != '';
12444 ALTER TABLE transactions DROP COLUMN reply_recommend;
12446 #IfColumn transactions reply_rx_refer
12447 INSERT INTO lbt_data SELECT id, 'reply_rx_refer' , reply_rx_refer FROM transactions WHERE reply_rx_refer != '';
12448 ALTER TABLE transactions DROP COLUMN reply_rx_refer;
12450 #IfColumn transactions reply_related_code
12451 INSERT INTO lbt_data SELECT id, 'reply_related_code', reply_related_code FROM transactions WHERE reply_related_code != '';
12452 ALTER TABLE transactions DROP COLUMN reply_related_code;
12455 #IfRow2D clinical_rules id secure_messaging_amc amc_code_2014 170.314(g)(1)/(2)
12456 UPDATE `clinical_rules` SET `amc_code_2014` = '170.314(g)(1)/(2)-19' WHERE `id` = 'secure_messaging_amc' AND `amc_code_2014` = '170.314(g)(1)/(2)';
12459 #IfMissingColumn documents documentationOf
12460 ALTER TABLE `documents` ADD `documentationOf` varchar(255) DEFAULT NULL;
12463 #IfMissingColumn ccda_components ccda_type
12464 ALTER TABLE `ccda_components` ADD ccda_type int(11) NOT NULL COMMENT '0=>sections,1=>components';
12467 #IfNotRow2D ccda_components ccda_components_field allergies ccda_components_name Allergies
12468 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('allergies','Allergies',1);
12471 #IfNotRow2D ccda_components ccda_components_field medications ccda_components_name Medications
12472 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('medications','Medications',1);
12475 #IfNotRow2D ccda_components ccda_components_field problems ccda_components_name Problems
12476 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('problems','Problems',1);
12479 #IfNotRow2D ccda_components ccda_components_field immunizations ccda_components_name Immunizations
12480 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('immunizations','Immunizations',1);
12483 #IfNotRow2D ccda_components ccda_components_field procedures ccda_components_name Procedures
12484 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('procedures','Procedures',1);
12487 #IfNotRow2D ccda_components ccda_components_field results ccda_components_name Results
12488 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('results','Results',1);
12491 #IfNotRow2D ccda_components ccda_components_field plan_of_care ccda_components_name Plan Of Care
12492 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('plan_of_care','Plan Of Care',1);
12495 #IfNotRow2D ccda_components ccda_components_field vitals ccda_components_name Vitals
12496 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('vitals','Vitals',1);
12499 #IfNotRow2D ccda_components ccda_components_field social_history ccda_components_name Social History
12500 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('social_history','Social History',1);
12503 #IfNotRow2D ccda_components ccda_components_field encounters ccda_components_name Encounters
12504 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('encounters','Encounters',1);
12507 #IfNotRow2D ccda_components ccda_components_field functional_status ccda_components_name Functional Status
12508 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('functional_status','Functional Status',1);
12511 #IfNotRow2D ccda_components ccda_components_field referral ccda_components_name Reason for Referral
12512 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('referral','Reason for Referral',1);
12515 #IfNotRow2D ccda_components ccda_components_field instructions ccda_components_name Instructions
12516 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('instructions','Instructions',1);
12519 #IfNotTable form_clinical_instructions
12520 CREATE TABLE `form_clinical_instructions` (
12521 `id` int(11) NOT NULL AUTO_INCREMENT,
12522 `pid` bigint(20) DEFAULT NULL,
12523 `encounter` varchar(255) DEFAULT NULL,
12524 `user` varchar(255) DEFAULT NULL,
12525 `instruction` text,
12526 `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
12527 `activity` TINYINT DEFAULT 1 NULL,
12530 INSERT INTO `registry` (`name`,`state`,`directory`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Clinical Instructions', 1, 'clinical_instructions', 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
12533 #IfMissingColumn clinical_rules web_reference
12534 ALTER TABLE `clinical_rules` ADD `web_reference` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Web Reference';
12537 #IfNotTable clinical_rules_log
12538 CREATE TABLE `clinical_rules_log` (
12539 `id` bigint(20) NOT NULL auto_increment,
12540 `date` datetime DEFAULT NULL,
12541 `pid` bigint(20) NOT NULL DEFAULT '0',
12542 `uid` bigint(20) NOT NULL DEFAULT '0',
12543 `category` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'An example category is clinical_reminder_widget',
12544 `value` TEXT NOT NULL,
12545 PRIMARY KEY (`id`),
12548 KEY `category` (`category`)
12549 ) ENGINE=MyISAM AUTO_INCREMENT=1 ;
12552 #IfMissingColumn clinical_rules access_control
12553 ALTER TABLE `clinical_rules` ADD `access_control` VARCHAR(255) NOT NULL DEFAULT 'patients:med' COMMENT 'ACO link for access control';
12556 #IfNotRow clinical_rules id rule_socsec_entry
12557 INSERT INTO `clinical_rules` ( `id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `access_control` ) VALUES ('rule_socsec_entry', 0, 0, 0, 0, '', '', 0, '', 0, 'admin:practice');
12560 #IfNotRow2D list_options list_id clinical_rules option_id rule_socsec_entry
12561 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('clinical_rules', 'rule_socsec_entry', 'Data Entry - Social Security Number', 1500, 0);
12564 #IfNotRow2D list_options list_id rule_action option_id act_soc_sec
12565 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('rule_action' ,'act_soc_sec', 'Social Security Number', 155, 0);
12568 #IfNotRow rule_action id rule_socsec_entry
12569 INSERT INTO `rule_action` ( `id`, `group_id`, `category`, `item` ) VALUES ('rule_socsec_entry', 1, 'act_cat_assess', 'act_soc_sec');
12572 #IfNotRow2D rule_action_item category act_cat_assess item act_soc_sec
12573 INSERT INTO `rule_action_item` ( `category`, `item`, `clin_rem_link`, `reminder_message`, `custom_flag` ) VALUES ('act_cat_assess', 'act_soc_sec', '', '', 0);
12576 #IfNotRow rule_reminder id rule_socsec_entry
12577 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'clinical_reminder_pre', 'week', '2');
12578 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'clinical_reminder_post', 'month', '1');
12579 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'patient_reminder_pre', 'week', '2');
12580 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'patient_reminder_post', 'month', '1');
12583 #IfNotRow rule_target id rule_socsec_entry
12584 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_socsec_entry', 1, 1, 1, 'target_database', '::patient_data::ss::::::ge::1', 0);
12587 #IfRow2D list_options list_id clinical_rules option_id e_prescribe_stage1_amc
12588 UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).' WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_stage1_amc';
12591 #IfRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc
12592 UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).' WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_2_stage2_amc';
12595 #IfNotRow clinical_rules id rule_penicillin_allergy
12596 INSERT INTO `clinical_rules` ( `id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag` ) VALUES ('rule_penicillin_allergy', 0, 0, 0, 0, '', '', 0, '', 0);
12599 #IfNotRow2D list_options list_id clinical_rules option_id rule_penicillin_allergy
12600 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('clinical_rules', 'rule_penicillin_allergy', 'Assess Penicillin Allergy', 1600, 0);
12603 #IfNotRow2D list_options list_id rule_action option_id act_penicillin_allergy
12604 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('rule_action' ,'act_penicillin_allergy', 'Penicillin Allergy', 157, 0);
12607 #IfNotRow rule_action id rule_penicillin_allergy
12608 INSERT INTO `rule_action` ( `id`, `group_id`, `category`, `item` ) VALUES ('rule_penicillin_allergy', 1, 'act_cat_assess', 'act_penicillin_allergy');
12611 #IfNotRow2D rule_action_item category act_cat_assess item act_penicillin_allergy
12612 INSERT INTO `rule_action_item` ( `category`, `item`, `clin_rem_link`, `reminder_message`, `custom_flag` ) VALUES ('act_cat_assess', 'act_penicillin_allergy', '', '', 1);
12615 #IfNotRow rule_reminder id rule_penicillin_allergy
12616 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'clinical_reminder_pre', 'week', '2');
12617 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'clinical_reminder_post', 'month', '1');
12618 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'patient_reminder_pre', 'week', '2');
12619 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'patient_reminder_post', 'month', '1');
12622 #IfNotRow rule_filter id rule_penicillin_allergy
12623 INSERT INTO `rule_filter` ( `id`, `include_flag`, `required_flag`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 1, 0, 'filt_lists', 'allergy', 'penicillin');
12626 #IfNotRow rule_target id rule_penicillin_allergy
12627 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_penicillin_allergy', 1, 1, 1, 'target_interval', 'year', 1);
12628 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_penicillin_allergy', 1, 1, 1, 'target_database', 'CUSTOM::act_cat_assess::act_penicillin_allergy::YES::ge::1', 0);
12631 #IfMissingColumn clinical_rules_log new_value
12632 ALTER TABLE `clinical_rules_log` ADD `new_value` TEXT NOT NULL;
12635 #IfNotColumnType procedure_report date_report datetime
12636 ALTER TABLE `procedure_report` CHANGE `date_report` `date_report` datetime DEFAULT NULL;